You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ta...@apache.org on 2022/03/10 14:10:30 UTC

[flink] branch release-1.14 updated: [FLINK-26550][checkpoint] Correct the information of checkpoint failure

This is an automated email from the ASF dual-hosted git repository.

tangyun pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.14 by this push:
     new 00fed2b  [FLINK-26550][checkpoint] Correct the information of checkpoint failure
00fed2b is described below

commit 00fed2be8643d62de47c7af1f7f1818377fd0615
Author: Yun Tang <my...@live.com>
AuthorDate: Wed Mar 9 20:00:18 2022 +0800

    [FLINK-26550][checkpoint] Correct the information of checkpoint failure
---
 .../org/apache/flink/runtime/checkpoint/CheckpointFailureManager.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointFailureManager.java b/flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointFailureManager.java
index f77d1a6..b72be0c 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointFailureManager.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointFailureManager.java
@@ -105,7 +105,7 @@ public class CheckpointFailureManager {
         updateStatsAfterCheckpointFailed(pendingCheckpointStats, statsTracker, exception);
 
         LOG.warn(
-                "Failed to trigger checkpoint {} for job {}. ({} consecutive failed attempts so far)",
+                "Failed to trigger or complete checkpoint {} for job {}. ({} consecutive failed attempts so far)",
                 checkpointId == UNKNOWN_CHECKPOINT_ID ? "UNKNOWN_CHECKPOINT_ID" : checkpointId,
                 job,
                 continuousFailureCounter.get(),