Skip to content

Commit

Permalink
[improve][zeta] fix zeta bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
liunaijie committed May 5, 2023
1 parent 7eebdc4 commit 350e8ca
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ public void notifyAllAction(ConsumerWithException<InternalCheckpointListener> co
@Override
public void restoreState(List<ActionSubtaskState> actionStateList) throws Exception {
log.debug("restoreState for SeaTunnelTask[{}]", actionStateList);
if (null == actionStateList) {
log.debug("restoreState is null, do nothing!");
return;
}
Map<ActionStateKey, List<ActionSubtaskState>> stateMap =
actionStateList.stream()
.collect(
Expand Down

0 comments on commit 350e8ca

Please sign in to comment.