mhansonp commented on a change in pull request #6858:
URL: https://github.com/apache/geode/pull/6858#discussion_r706479441
##########
File path:
geode-core/src/integrationTest/java/org/apache/geode/internal/cache/ha/BlockingHARegionJUnitTest.java
##########
@@ -281,26 +231,15 @@ public void testConcurrentPutsTakesNotExceedingLimit()
throws Exception {
join(thread9, 30 * 1000);
join(thread10, 30 * 1000);
- WaitCriterion ev = new WaitCriterion() {
- @Override
- public boolean done() {
- return hrq.region.size() == 20000;
- }
+ GeodeAwaitility.await().until(() -> hrq.region.size() == 20000);
- @Override
- public String description() {
- return null;
- }
- };
- GeodeAwaitility.await().untilAsserted(ev);
+ assertThat(thread1.isAlive()).isTrue();
Review comment:
The test is disabled. I chose not to modify it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]