rkhachatryan commented on a change in pull request #14683: URL: https://github.com/apache/flink/pull/14683#discussion_r559737569
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinator.java ########## @@ -1278,7 +1278,11 @@ public void run() { } void scheduleTriggerRequest() { - timer.execute(this::executeQueuedRequest); + if (isShutdown()) { + LOG.debug("Skip scheduling trigger request because is shutting down"); + } else { + timer.execute(this::executeQueuedRequest); + } } Review comment: Added a test. I initially assumed this change would be only a hotfix. ---------------------------------------------------------------- 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