Skip to content

Commit e5d5a9a

Browse files
committed
spotless
1 parent 3fab712 commit e5d5a9a

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

integration-test/src/main/java/org/apache/iotdb/it/env/cluster/node/AbstractNodeWrapper.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,18 @@ private void reloadClusterConfigurations() {
339339
clusterConfigProperties.setProperty(
340340
CONFIG_NODE_CONSENSUS_PROTOCOL_CLASS,
341341
fromConsensusAbbrToFullName(
342-
System.getProperty(LIGHT_WEIGHT_STANDALONE_MODE_CONFIG_NODE_CONSENSUS, "Simple")));
342+
System.getProperty(
343+
LIGHT_WEIGHT_STANDALONE_MODE_CONFIG_NODE_CONSENSUS, "Simple")));
343344
clusterConfigProperties.setProperty(
344345
SCHEMA_REGION_CONSENSUS_PROTOCOL_CLASS,
345346
fromConsensusAbbrToFullName(
346-
System.getProperty(LIGHT_WEIGHT_STANDALONE_MODE_SCHEMA_REGION_CONSENSUS, "Simple")));
347+
System.getProperty(
348+
LIGHT_WEIGHT_STANDALONE_MODE_SCHEMA_REGION_CONSENSUS, "Simple")));
347349
clusterConfigProperties.setProperty(
348350
DATA_REGION_CONSENSUS_PROTOCOL_CLASS,
349351
fromConsensusAbbrToFullName(
350-
System.getProperty(LIGHT_WEIGHT_STANDALONE_MODE_DATA_REGION_CONSENSUS, "Simple")));
352+
System.getProperty(
353+
LIGHT_WEIGHT_STANDALONE_MODE_DATA_REGION_CONSENSUS, "Simple")));
351354
clusterConfigProperties.setProperty(
352355
SCHEMA_REPLICATION_FACTOR,
353356
System.getProperty(LIGHT_WEIGHT_STANDALONE_MODE_SCHEMA_REGION_REPLICA_NUM, "1"));

integration-test/src/test/java/org/apache/iotdb/confignode/it/partition/IoTDBAutoRegionGroupExtension2IT.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ public void testAutoRegionGroupExtensionPolicy2()
148148

149149
// Check DataRegionGroups
150150
TShowRegionResp resp = client.showRegion(new TShowRegionReq());
151-
resp.getRegionInfoList().removeIf(r -> r.getDatabase().startsWith(SystemConstant.SYSTEM_DATABASE));
151+
resp.getRegionInfoList()
152+
.removeIf(r -> r.getDatabase().startsWith(SystemConstant.SYSTEM_DATABASE));
152153
Map<Integer, AtomicInteger> counter = new HashMap<>();
153154
resp.getRegionInfoList()
154155
.forEach(

integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/enhanced/IoTDBPipeClusterIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,8 +596,7 @@ public void testRegisteringNewDataNodeWhenTransferringData() throws Exception {
596596
// ensure at least one insert happens before adding node so that the time series can be
597597
// created
598598
if (TestUtils.tryExecuteNonQueryWithRetry(
599-
senderEnv,
600-
String.format("insert into root.db.d1(time, s1) values (%s, 1)", 0))) {
599+
senderEnv, String.format("insert into root.db.d1(time, s1) values (%s, 1)", 0))) {
601600
succeedNum.incrementAndGet();
602601
}
603602
final Thread t =

integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/enhanced/IoTDBPipeConnectorCompressionIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,10 @@ public void testZstdCompressorLevel() throws Exception {
309309
.count());
310310

311311
TestUtils.assertDataEventuallyOnEnv(
312-
receiverEnv, "count timeseries root.db.**", "count(timeseries),", Collections.singleton("3,"));
312+
receiverEnv,
313+
"count timeseries root.db.**",
314+
"count(timeseries),",
315+
Collections.singleton("3,"));
313316
}
314317
}
315318
}

0 commit comments

Comments
 (0)