Skip to content

Commit

Permalink
Merge pull request #3732 from actiontech/2232
Browse files Browse the repository at this point in the history
fix npe  inner 2232
  • Loading branch information
ylinzhu authored Jun 16, 2023
2 parents f0e177d + 465dfde commit 9399679
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,8 @@ public void backendSpecialCleanUp() {

public void releaseSignal() {
isRowDataFlowing = false;
if (recycler != null) {
recycler.signal();
recycler = null;
}
Optional.ofNullable(recycler).ifPresent(res -> res.signal());
recycler = null;
}

public void resetContextStatus() {
Expand Down

0 comments on commit 9399679

Please sign in to comment.