This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 91f5c6ca921 Fix IoTDBSetConfigurationIT.setClusterNameTest (wait 
DataNode's restarting for more time, and slow down requesting frequency) #13373
91f5c6ca921 is described below

commit 91f5c6ca9214b1b446879f2139738dd6ef340793
Author: Li Yu Heng <[email protected]>
AuthorDate: Tue Sep 3 16:48:47 2024 +0800

    Fix IoTDBSetConfigurationIT.setClusterNameTest (wait DataNode's restarting 
for more time, and slow down requesting frequency) #13373
---
 .../src/test/java/org/apache/iotdb/db/it/IoTDBSetConfigurationIT.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/integration-test/src/test/java/org/apache/iotdb/db/it/IoTDBSetConfigurationIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/db/it/IoTDBSetConfigurationIT.java
index f6e9f98726b..9039f94dc18 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/db/it/IoTDBSetConfigurationIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/db/it/IoTDBSetConfigurationIT.java
@@ -101,7 +101,8 @@ public class IoTDBSetConfigurationIT {
     EnvFactory.getEnv().getDataNodeWrapper(0).start();
     // set cluster name on datanode
     Awaitility.await()
-        .atMost(10, TimeUnit.SECONDS)
+        .atMost(30, TimeUnit.SECONDS)
+        .pollDelay(1, TimeUnit.SECONDS)
         .until(
             () -> {
               try (Connection connection = EnvFactory.getEnv().getConnection();

Reply via email to