Skip to content

Commit

Permalink
Shutdown request handler before network server in ambry server (linke…
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlin-linkedin authored and cgtz committed Jul 29, 2019
1 parent 80c32e7 commit 063ca5e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ public void shutdown() {
if (statsManager != null) {
statsManager.shutdown();
}
if (networkServer != null) {
networkServer.shutdown();
}
if (requestHandlerPool != null) {
requestHandlerPool.shutdown();
}
if (networkServer != null) {
networkServer.shutdown();
}
if (replicationManager != null) {
replicationManager.shutdown();
}
Expand Down

0 comments on commit 063ca5e

Please sign in to comment.