Skip to content

Commit

Permalink
Revert "Shutdown request handler before network server in ambry server (
Browse files Browse the repository at this point in the history
#1206)" (#1273)

This reverts commit 063ca5e.
We have some suspicions that the frontend may not be able to deal with
this nicely if it is in the middle of writing to a socket.
  • Loading branch information
cgtz authored and zzmao committed Oct 4, 2019
1 parent 26d9e87 commit 0c10f66
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,12 @@ public void shutdown() {
if (statsManager != null) {
statsManager.shutdown();
}
if (requestHandlerPool != null) {
requestHandlerPool.shutdown();
}
if (networkServer != null) {
networkServer.shutdown();
}
if (requestHandlerPool != null) {
requestHandlerPool.shutdown();
}
if (replicationManager != null) {
replicationManager.shutdown();
}
Expand Down

0 comments on commit 0c10f66

Please sign in to comment.