This is an automated email from the ASF dual-hosted git repository.
caogaofei pushed a commit to branch beyyes/fix_doc
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/beyyes/fix_doc by this push:
new 2d9626f936 change static final variable naming
2d9626f936 is described below
commit 2d9626f93601eab22bac600eb1155d581154410d
Author: Beyyes <[email protected]>
AuthorDate: Fri Aug 5 10:51:27 2022 +0800
change static final variable naming
---
.../java/org/apache/iotdb/confignode/manager/load/LoadManager.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/confignode/src/main/java/org/apache/iotdb/confignode/manager/load/LoadManager.java
b/confignode/src/main/java/org/apache/iotdb/confignode/manager/load/LoadManager.java
index c774836f9a..6d5cc98cc1 100644
---
a/confignode/src/main/java/org/apache/iotdb/confignode/manager/load/LoadManager.java
+++
b/confignode/src/main/java/org/apache/iotdb/confignode/manager/load/LoadManager.java
@@ -231,7 +231,7 @@ public class LoadManager {
heartBeatExecutor,
this::heartbeatLoopBody,
0,
- HEARTBEAT_INTERVAL,
+ HEARTBEAT_INTERVAL,
TimeUnit.MILLISECONDS);
LOGGER.info("Heartbeat service is started successfully.");
}
@@ -243,7 +243,7 @@ public class LoadManager {
loadBalancingExecutor,
this::updateNodeLoadStatistic,
0,
- HEARTBEAT_INTERVAL,
+ HEARTBEAT_INTERVAL,
TimeUnit.MILLISECONDS);
LOGGER.info("LoadBalancing service is started successfully.");
}