jhutchison commented on a change in pull request #5954: URL: https://github.com/apache/geode/pull/5954#discussion_r583251783
########## File path: geode-redis/src/commonTest/java/org/apache/geode/redis/ConcurrentLoopingThreads.java ########## @@ -63,13 +65,19 @@ private ConcurrentLoopingThreads start(boolean lockstep) { * operations. */ public void await() { - loopingFutures.forEach(loopingThread -> { - try { - loopingThread.get(); - } catch (InterruptedException | ExecutionException e) { - throw new RuntimeException(e); + boolean timeOutExceptionThrown; + do { + timeOutExceptionThrown = false; Review comment: Yeah, I'll add the time unit to allow it to throw the timeout exception. Thanks for catching that. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org