This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a commit to branch multiLeader_out_of_order
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/multiLeader_out_of_order by
this push:
new 3a9df1528b spotless
3a9df1528b is described below
commit 3a9df1528be86d01ec55d62ab18283736d760b7c
Author: Jinrui.Zhang <[email protected]>
AuthorDate: Tue Jul 26 11:18:41 2022 +0800
spotless
---
.../apache/iotdb/consensus/multileader/MultiLeaderServerImpl.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/consensus/src/main/java/org/apache/iotdb/consensus/multileader/MultiLeaderServerImpl.java
b/consensus/src/main/java/org/apache/iotdb/consensus/multileader/MultiLeaderServerImpl.java
index 0ff7532cc4..c8cc685398 100644
---
a/consensus/src/main/java/org/apache/iotdb/consensus/multileader/MultiLeaderServerImpl.java
+++
b/consensus/src/main/java/org/apache/iotdb/consensus/multileader/MultiLeaderServerImpl.java
@@ -114,7 +114,10 @@ public class MultiLeaderServerImpl {
public TSStatus write(IConsensusRequest request) {
synchronized (stateMachine) {
if (needToThrottleDown()) {
- logger.info("[Throttle Down] index:{}, safeIndex:{}", getIndex(),
getCurrentSafelyDeletedSearchIndex());
+ logger.info(
+ "[Throttle Down] index:{}, safeIndex:{}",
+ getIndex(),
+ getCurrentSafelyDeletedSearchIndex());
try {
stateMachine.wait(TIME_OUT);
} catch (InterruptedException e) {