Skip to content

Commit

Permalink
[Improve][Zeta] Improve CheckpointCoordinator log error when report e…
Browse files Browse the repository at this point in the history
…rror from task (#178) (#5134)
  • Loading branch information
Hisoka-X authored Jul 24, 2023
1 parent 7519817 commit 2391135
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,9 @@ public InvocationFuture<?>[] notifyTaskStart() {

public void reportCheckpointErrorFromTask(String errorMsg) {
handleCoordinatorError(
CheckpointCloseReason.CHECKPOINT_INSIDE_ERROR, new SeaTunnelException(errorMsg));
"report error from task",
new SeaTunnelException(errorMsg),
CheckpointCloseReason.CHECKPOINT_INSIDE_ERROR);
}

private void scheduleTriggerPendingCheckpoint(long delayMills) {
Expand Down

0 comments on commit 2391135

Please sign in to comment.