dcapwell commented on code in PR #3416:
URL: https://github.com/apache/cassandra/pull/3416#discussion_r1683576139


##########
test/distributed/org/apache/cassandra/distributed/impl/AbstractCluster.java:
##########
@@ -1095,7 +1096,27 @@ public void close()
                            .filter(i -> !i.isShutdown())
                            .map(IInstance::shutdown)
                            .collect(Collectors.toList());
-        FBUtilities.waitOnFutures(futures,1L, TimeUnit.MINUTES);
+        try
+        {
+            FBUtilities.waitOnFutures(futures,1L, TimeUnit.MINUTES);
+        }
+        catch (RuntimeException t)
+        {
+            if (t.getCause() instanceof TimeoutException)

Review Comment:
   I think I broke this when I improved the error msg... ill try to fix



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