frankliee commented on code in PR #213:
URL: https://github.com/apache/incubator-uniffle/pull/213#discussion_r971501022


##########
integration-test/common/src/test/java/org/apache/uniffle/test/QuorumTest.java:
##########
@@ -573,7 +574,12 @@ public void case7() throws Exception {
         testAppId, 0, 0, 100, 1,
         10, 1000, "", blockIdBitmap, taskIdBitmap,
         Lists.newArrayList(shuffleServerInfo2), null, new DefaultIdHelper());
-    assertTrue(readClient.readShuffleBlockData() == null);
+    try {
+      readClient.readShuffleBlockData();
+      fail();
+    } catch (RssException e) {
+      // ignore

Review Comment:
   Could you add some log in catch {} to help diagnose  when tests are broken. 



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to