Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Geode's code has a lot of cancellation checks that look like this:
if (cache.getCancelCriterion().cancelInProgress() != null)
It seems very odd to have to perform a null check to see if the cache is shutting down. CancelCriterion should have a isCancelInProgress() method that can be used instead of the null check.