This is an automated email from the ASF dual-hosted git repository.
jinrongtong 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 8aa7bc08f [ISSUE #6400] Remove unnecessary config
BrokerConfig.maxDelayTime
8aa7bc08f is described below
commit 8aa7bc08f74d57cdbc2f109d8b3a88891203cdd3
Author: caigy <[email protected]>
AuthorDate: Fri Mar 24 14:48:17 2023 +0800
[ISSUE #6400] Remove unnecessary config BrokerConfig.maxDelayTime
---
.../src/main/java/org/apache/rocketmq/common/BrokerConfig.java | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
b/common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
index b3edb34b3..08fbcb521 100644
--- a/common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
+++ b/common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
@@ -130,7 +130,6 @@ public class BrokerConfig extends BrokerIdentity {
private boolean accountStatsPrintZeroValues = true;
private boolean transferMsgByHeap = true;
- private int maxDelayTime = 40;
private String regionId = MixAll.DEFAULT_TRACE_REGION_ID;
private int registerBrokerTimeoutMills = 24000;
@@ -966,14 +965,6 @@ public class BrokerConfig extends BrokerIdentity {
this.clientManageThreadPoolNums = clientManageThreadPoolNums;
}
- public int getMaxDelayTime() {
- return maxDelayTime;
- }
-
- public void setMaxDelayTime(final int maxDelayTime) {
- this.maxDelayTime = maxDelayTime;
- }
-
public int getClientManagerThreadPoolQueueCapacity() {
return clientManagerThreadPoolQueueCapacity;
}