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 and sarvekshayr committed Oct 7, 2024
1 parent 9967070 commit ff854a8
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 ff854a8

Please sign in to comment.