Skip to content

Commit

Permalink
[Hotfix][Zeta] Fix task state memory leak (#5139)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hisoka-X authored Jul 24, 2023
1 parent 6f30b29 commit a6c7ca1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public void ack(Barrier barrier) {
new TaskAcknowledgeOperation(
this.taskLocation,
(CheckpointBarrier) barrier,
checkpointStates.get(barrier.getId())))
checkpointStates.remove(barrier.getId())))
.join();
}
}
Expand Down

0 comments on commit a6c7ca1

Please sign in to comment.