Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5872#discussion_r182459949
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinator.java
---
@@ -1214,7 +1216,7 @@ public void run() {
triggerCheckpoint(System.currentTimeMillis(),
true);
}
catch (Exception e) {
- LOG.error("Exception while triggering
checkpoint.", e);
+ LOG.error("Exception while triggering
checkpoint for job " + job + ".", e);
--- End diff --
Let's use this opportunity to switch for formats for the changed lines.
---