This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch IOTDB-3228 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 77350cc0c34e15648b263ee037a8f4f32effaf58 Author: Steve Yurong Su <[email protected]> AuthorDate: Mon May 30 11:09:46 2022 +0800 spotless --- .../confignode/persistence/executor/ConfigRequestExecutor.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigRequestExecutor.java b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigRequestExecutor.java index 1fe780ef62..311ac7e575 100644 --- a/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigRequestExecutor.java +++ b/confignode/src/main/java/org/apache/iotdb/confignode/persistence/executor/ConfigRequestExecutor.java @@ -219,7 +219,8 @@ public class ConfigRequestExecutor { } AtomicBoolean result = new AtomicBoolean(true); - getAllAttributes().parallelStream() + getAllAttributes() + .parallelStream() .forEach( x -> { boolean takeSnapshotResult = true; @@ -248,7 +249,8 @@ public class ConfigRequestExecutor { return; } - getAllAttributes().parallelStream() + getAllAttributes() + .parallelStream() .forEach( x -> { try {
