Skip to content

Commit

Permalink
[FLINK-4741] Proper shutdown the ServerBootstrap WebRuntimeMonitor
Browse files Browse the repository at this point in the history
This closes apache#2862.
  • Loading branch information
MayerRoman authored and zentol committed Nov 27, 2016
1 parent 7d34f65 commit 333da3a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ public void stop() throws Exception {
if (bootstrap.group() != null) {
bootstrap.group().shutdownGracefully();
}
if (bootstrap.childGroup() != null) {
bootstrap.childGroup().shutdownGracefully();
}
}

stackTraceSamples.shutDown();
Expand Down

0 comments on commit 333da3a

Please sign in to comment.