1996fanrui commented on code in PR #27375:
URL: https://github.com/apache/flink/pull/27375#discussion_r2680919902
##########
flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java:
##########
@@ -1762,4 +1792,35 @@ void awaitTriggerLatch() {
}
}
}
+
+ private static class ChannelStateWriterWithCloseTracker
+ extends ChannelStateWriter.NoOpChannelStateWriter {
+ private final AtomicBoolean closeCalled = new AtomicBoolean(false);
+
+ @Override
+ public void close() {
+ closeCalled.set(true);
+ ;
Review Comment:
Was the second semicolon added by mistake?
--
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]