xiaoHoly commented on a change in pull request #14076: URL: https://github.com/apache/flink/pull/14076#discussion_r524131379
########## 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: hi ,@tillrohrmann.I'm not sure if I can solve the instability with the change,but it does exist. ---------------------------------------------------------------- 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