Merge pull request #792 from GreatGarlic/master
MqttTransportService NioEventLoopGroup shutdown order error
This commit is contained in:
commit
6cf7b35b86
@ -119,8 +119,8 @@ public class MqttTransportService {
|
|||||||
try {
|
try {
|
||||||
serverChannel.close().sync();
|
serverChannel.close().sync();
|
||||||
} finally {
|
} finally {
|
||||||
bossGroup.shutdownGracefully();
|
|
||||||
workerGroup.shutdownGracefully();
|
workerGroup.shutdownGracefully();
|
||||||
|
bossGroup.shutdownGracefully();
|
||||||
}
|
}
|
||||||
log.info("MQTT transport stopped!");
|
log.info("MQTT transport stopped!");
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user