This is an automated email from the ASF dual-hosted git repository.
xingtanzjr pushed a commit to branch ca_performance
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/ca_performance by this push:
new ba423ca1f31 change timeout to 0 for IoT Region Migration RPC
ba423ca1f31 is described below
commit ba423ca1f31f1bf655cb9fd0b321eede439a54a0
Author: Jinrui.Zhang <[email protected]>
AuthorDate: Mon Aug 14 18:03:21 2023 +0800
change timeout to 0 for IoT Region Migration RPC
---
.../iotdb/consensus/iot/client/SyncIoTConsensusServiceClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/iot/client/SyncIoTConsensusServiceClient.java
b/iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/iot/client/SyncIoTConsensusServiceClient.java
index e3815d3c3e5..340ef04a36f 100644
---
a/iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/iot/client/SyncIoTConsensusServiceClient.java
+++
b/iotdb-core/consensus/src/main/java/org/apache/iotdb/consensus/iot/client/SyncIoTConsensusServiceClient.java
@@ -55,7 +55,7 @@ public class SyncIoTConsensusServiceClient extends
IoTConsensusIService.Client
TConfigurationConst.defaultTConfiguration,
endpoint.getIp(),
endpoint.getPort(),
- property.getConnectionTimeoutMs()))));
+ 0))));
this.printLogWhenEncounterException =
property.isPrintLogWhenEncounterException();
this.endpoint = endpoint;
this.clientManager = clientManager;