tillrohrmann commented on a change in pull request #14076: URL: https://github.com/apache/flink/pull/14076#discussion_r524245517
########## File path: flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/core/testutils/OneShotLatch.java ########## @@ -61,7 +61,11 @@ public void await() throws InterruptedException { try { waitersSet.add(thread); lock.wait(); - } finally { + } + catch (InterruptedException e) { + Thread.currentThread().interrupt(); + } + finally { Review comment: Without an explanation why this solves the problem, I cannot merge this PR. ---------------------------------------------------------------- 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