dawidwys commented on a change in pull request #16184: URL: https://github.com/apache/flink/pull/16184#discussion_r670208431
########## File path: flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTask.java ########## @@ -215,6 +224,11 @@ private void cancelTask(boolean interrupt) { } private void interruptSourceThread(boolean interrupt) { + // Nothing need to do if the source is finished on restore + if (operatorChain != null && operatorChain.isFinishedOnRestore()) { Review comment: Thanks for the explanation -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org