adoroszlai commented on code in PR #6291:
URL: https://github.com/apache/ozone/pull/6291#discussion_r1505604931


##########
hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/fs/ozone/TestDirectoryDeletingServiceWithFSO.java:
##########
@@ -534,12 +534,12 @@ private void assertTableRowCount(Table<String, ?> table, 
int count)
   private boolean assertTableRowCount(int expectedCount,
                                       Table<String, ?> table) {
     AtomicLong count = new AtomicLong(0L);
-    assertDoesNotThrow(() -> {
-      
count.set(cluster.getOzoneManager().getMetadataManager().countRowsInTable(table));
+    assertDoesNotThrow(() -> 
count.set(cluster.getOzoneManager().getMetadataManager().countRowsInTable(table)));
+    try {
       LOG.info("{} actual row count={}, expectedCount={}", table.getName(),
           count.get(), expectedCount);
-    });
-
+    } catch (IOException e) {
+    }

Review Comment:
   Done.



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