zhijiangW commented on a change in pull request #12664:
URL: https://github.com/apache/flink/pull/12664#discussion_r440568203



##########
File path: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/SubtaskCheckpointCoordinatorImpl.java
##########
@@ -275,7 +277,7 @@ public void checkpointState(
        @Override
        public void notifyCheckpointComplete(long checkpointId, 
OperatorChain<?, ?> operatorChain, Supplier<Boolean> isRunning) throws 
Exception {
                if (isRunning.get()) {
-                       LOG.debug("Notification of complete checkpoint for task 
{}", taskName);
+                       LOG.debug("Notification of complete checkpoint {} for 
task {}", checkpointId, taskName);

Review comment:
       nit: it should be a separate hotfix commit.

##########
File path: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/SubtaskCheckpointCoordinatorImpl.java
##########
@@ -291,7 +293,7 @@ public void notifyCheckpointAborted(long checkpointId, 
OperatorChain<?, ?> opera
 
                Exception previousException = null;
                if (isRunning.get()) {
-                       LOG.debug("Notification of aborted checkpoint for task 
{}", taskName);
+                       LOG.debug("Notification of aborted checkpoint {} for 
task {}", checkpointId, taskName);

Review comment:
       ditto:




----------------------------------------------------------------
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:
[email protected]


Reply via email to