Skip to content

Commit

Permalink
[FLINK-14336][checkpointing] Log exceptions during async checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
klion26 authored and zentol committed Oct 23, 2019
1 parent 8629725 commit a99b849
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -1115,6 +1115,12 @@ public void run() {
checkpointMetaData.getCheckpointId());
}
} catch (Exception e) {
if (LOG.isDebugEnabled()) {
LOG.debug("{} - asynchronous part of checkpoint {} could not be completed.",
owner.getName(),
checkpointMetaData.getCheckpointId(),
e);
}
handleExecutionException(e);
} finally {
owner.cancelables.unregisterCloseable(this);
Expand Down

0 comments on commit a99b849

Please sign in to comment.