Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
Awaitility was upgraded for GEODE-5593 and most or all of the await()...until() calls were changed to await()...untilAsserted(). One or more of these that are now incorrect.
BucketCreationCrashCompletesRegressionTest line 173 is now:
await().atMost(2, MINUTES).untilAsserted(() -> { hasBucketOwners(partitionedRegion, bucketId); });
But hasBucketOwners returns a boolean and does not perform any assertions.
I'll fix this test and then review every other test that was changed to use untilAsserted.