You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@geode.apache.org by GitBox <gi...@apache.org> on 2021/10/13 18:16:45 UTC

[GitHub] [geode] gesterzhou commented on a change in pull request #6992: GEODE-9677: After provider sends ImageReply, requester could finish e…

gesterzhou commented on a change in pull request #6992:
URL: https://github.com/apache/geode/pull/6992#discussion_r728333271



##########
File path: geode-core/src/distributedTest/java/org/apache/geode/internal/cache/GIIDeltaDUnitTest.java
##########
@@ -1530,8 +1530,8 @@ public String description() {
     // let GII continue
     P.invoke(() -> resetGIITestHook(DuringPackingImage, true));
     async3.join(MAX_WAIT * 2);
-    count = getDeltaGIICount(P);
-    assertEquals(0, count);
+    final int countConst = getDeltaGIICount(P);
+    GeodeAwaitility.await().untilAsserted(() -> assertEquals(0, countConst));

Review comment:
       You are right. I fixed. 




-- 
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: notifications-unsubscribe@geode.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org