Skip to content

Commit

Permalink
[FLINK-35813][runtime] Do not clear state field in TSO until operat…
Browse files Browse the repository at this point in the history
…or was closed
  • Loading branch information
yuxiqian committed Jul 11, 2024
1 parent 302a691 commit e469e95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ public void finish() throws Exception {
public void close() throws Exception {
super.close();
clearOperator();
this.state = null;
}

@Override
Expand Down Expand Up @@ -292,6 +293,5 @@ private DataChangeEvent processProjection(
private void clearOperator() {
this.transforms = null;
this.processorMap = null;
this.state = null;
}
}

0 comments on commit e469e95

Please sign in to comment.