This is an automated email from the ASF dual-hosted git repository.
lizhanhui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git
The following commit(s) were added to refs/heads/develop by this push:
new 465ba2137 [ISSUE #5372] remove second call on fileWatchService's
shutdown method (#5379)
465ba2137 is described below
commit 465ba213713e0d0f0dbb33ced347b950344f4bf5
Author: thezp <[email protected]>
AuthorDate: Mon Oct 24 10:42:00 2022 +0800
[ISSUE #5372] remove second call on fileWatchService's shutdown method
(#5379)
Co-authored-by: zhangpeng <Nari@2021>
---
broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java
b/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java
index 657234e26..ebb34e8a8 100644
--- a/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java
+++ b/broker/src/main/java/org/apache/rocketmq/broker/BrokerController.java
@@ -1365,9 +1365,6 @@ public class BrokerController {
this.consumerManageExecutor.shutdown();
}
- if (this.fileWatchService != null) {
- this.fileWatchService.shutdown();
- }
if (this.transactionalMessageCheckService != null) {
this.transactionalMessageCheckService.shutdown(false);
}