Skip to content

Commit

Permalink
[Fix] Fixe NPE in OperationsLog.stop()
Browse files Browse the repository at this point in the history
  • Loading branch information
eitch committed Jul 11, 2024
1 parent cd5eeae commit 8a7e739
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ public void stop() throws Exception {
this.handleQueueTask.cancel(true);
if (this.executorService != null)
this.executorService.shutdownNow();
this.sentMessageHashes.clear();
if (this.sentMessageHashes != null)
this.sentMessageHashes.clear();
super.stop();
}

Expand Down

0 comments on commit 8a7e739

Please sign in to comment.