Skip to content

Commit

Permalink
nearline-storage: shutdown ScheduledExecutor on shutdown
Browse files Browse the repository at this point in the history
Motivation:
The AbstractBlockingNearlineStorage should stop all executor services on
shutdown.

Modification:
Shutdown ScheduledExecutor on AbstractBlockingNearlineStorage#shutdown

Result:
clean shutdown.

Acked-by: Albert Rossi
Acked-by: Lea Morschel
Target: master
Require-book: no
Require-notes: no
  • Loading branch information
kofemann committed Apr 19, 2021
1 parent 49ca2f7 commit 47896d7
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -199,6 +199,7 @@ public void shutdown()
flushExecutor.shutdown();
stageExecutor.shutdown();
removeExecutor.shutdown();
scheduledExecutor.shutdown();
executor.shutdown();
}

Expand Down

0 comments on commit 47896d7

Please sign in to comment.