Skip to content

Commit 55611f1

Browse files
authored
Fixed the default string charset in CI (apache#17354)
* utf * logg
1 parent c8455c1 commit 55611f1

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,7 @@ public void start() {
527527
"-XX:MaxDirectMemorySize=" + jvmConfig.getMaxDirectMemorySize() + "m",
528528
"-Djdk.nio.maxCachedBufferSize=262144",
529529
"-D" + IoTDBConstant.INTEGRATION_TEST_KILL_POINTS + "=" + killPoints.toString(),
530+
"-Dsun.jnu.encoding=UTF-8 -Dfile.encoding=UTF-8",
530531
"-cp",
531532
server_node_lib_path));
532533
addStartCmdParams(startCmd);

iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/config/PipeConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ public void printAllConfigs() {
616616

617617
LOGGER.info("PipeAirGapReceiverEnabled: {}", getPipeAirGapReceiverEnabled());
618618
LOGGER.info("PipeAirGapReceiverPort: {}", getPipeAirGapReceiverPort());
619+
LOGGER.info("PipeAirGapSinkTabletTimeoutMs: {}", getPipeAirGapSinkTabletTimeoutMs());
619620

620621
LOGGER.info(
621622
"PipeReceiverLoginPeriodicVerificationIntervalMs: {}",

0 commit comments

Comments
 (0)