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

jt2594838 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 db27f78a1b8 Fix pipe lifecycle restart order in IT (#17962)
db27f78a1b8 is described below

commit db27f78a1b898c09f7bcf79b5e507a672a0003b4
Author: Caideyipi <[email protected]>
AuthorDate: Wed Jun 17 10:38:16 2026 +0800

    Fix pipe lifecycle restart order in IT (#17962)
---
 .../pipe/it/dual/tablemodel/manual/basic/IoTDBPipeLifeCycleIT.java      | 2 +-
 .../iotdb/pipe/it/dual/treemodel/auto/basic/IoTDBPipeLifeCycleIT.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/tablemodel/manual/basic/IoTDBPipeLifeCycleIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/tablemodel/manual/basic/IoTDBPipeLifeCycleIT.java
index 3fd03bebd75..8ea9888be88 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/tablemodel/manual/basic/IoTDBPipeLifeCycleIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/tablemodel/manual/basic/IoTDBPipeLifeCycleIT.java
@@ -387,8 +387,8 @@ public class IoTDBPipeLifeCycleIT extends 
AbstractPipeTableModelDualManualIT {
     }
 
     try {
-      TestUtils.restartCluster(senderEnv);
       TestUtils.restartCluster(receiverEnv);
+      TestUtils.restartCluster(senderEnv);
     } catch (final Throwable e) {
       e.printStackTrace();
       return;
diff --git 
a/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/basic/IoTDBPipeLifeCycleIT.java
 
b/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/basic/IoTDBPipeLifeCycleIT.java
index dae6f1060ce..188f2813115 100644
--- 
a/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/basic/IoTDBPipeLifeCycleIT.java
+++ 
b/integration-test/src/test/java/org/apache/iotdb/pipe/it/dual/treemodel/auto/basic/IoTDBPipeLifeCycleIT.java
@@ -510,8 +510,8 @@ public class IoTDBPipeLifeCycleIT extends 
AbstractPipeDualTreeModelAutoIT {
     }
 
     try {
-      TestUtils.restartCluster(senderEnv);
       TestUtils.restartCluster(receiverEnv);
+      TestUtils.restartCluster(senderEnv);
     } catch (final Throwable e) {
       e.printStackTrace();
       return;

Reply via email to