Skip to content

Commit

Permalink
HDDS-11500. RootCARotationManager cancelling wrong task in notifyStat…
Browse files Browse the repository at this point in the history
…usChanged (apache#7251)
  • Loading branch information
Galsza authored Sep 30, 2024
1 parent 1e6e4b3 commit 254db9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void notifyStatusChanged() {
waitAckTask.cancel(true);
}
if (waitAckTimeoutTask != null) {
waitAckTask.cancel(true);
waitAckTimeoutTask.cancel(true);
}
if (clearPostProcessingTask != null) {
clearPostProcessingTask.cancel(true);
Expand Down

0 comments on commit 254db9e

Please sign in to comment.