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


##########
test/distributed/org/apache/cassandra/fuzz/topology/TopologyMixupTestBase.java:
##########
@@ -486,6 +583,13 @@ public String ipAddress(int nodeNum)
             {
                 throw new UncheckedIOException(e);
             }
+            cluster.setUncaughtExceptionsFilter((node, t) -> {
+                // api is "ignore" so false means include,
+                var rootCause = Throwables.getRootCause(t);
+                if (rootCause.getMessage() != null && 
rootCause.getMessage().startsWith("Queried for epoch") && 
rootCause.getMessage().contains("but could not catch up. Current epoch:"))

Review Comment:
   honestly I only did this as it doesn't *seem* to impact the test, but it did 
cause it to fail as unexpected... I can remove if you feel this *should* fail 
the test...



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