Skip to content

Commit

Permalink
Fix UNINSTALL PLUGIN AuditLoader Waiting
Browse files Browse the repository at this point in the history
  • Loading branch information
Haox-liu committed Sep 3, 2024
1 parent 7d09f7a commit 2cd4867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void close() throws IOException {
isClosed = true;
if (loadThread != null) {
try {
loadThread.join();
loadThread.join(60000);
} catch (InterruptedException e) {
LOG.debug("encounter exception when closing the audit loader", e);
}
Expand Down

0 comments on commit 2cd4867

Please sign in to comment.