This is an automated email from the ASF dual-hosted git repository.
tanxinyu pushed a commit to branch rc/1.3.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/rc/1.3.3 by this push:
new 5634a67c3e5 [to rc/1.3.3] Fix
IoTDBSetConfigurationIT.setClusterNameTest (wait DataNode's restarting for more
time, and slow down requesting frequency) #13374
5634a67c3e5 is described below
commit 5634a67c3e5382c45c3c3909ff5aaf07d4809721
Author: Li Yu Heng <[email protected]>
AuthorDate: Tue Sep 3 16:49:02 2024 +0800
[to rc/1.3.3] Fix IoTDBSetConfigurationIT.setClusterNameTest (wait
DataNode's restarting for more time, and slow down requesting frequency) #13374
---
.../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();