This is an automated email from the ASF dual-hosted git repository. Caideyipi pushed a commit to branch cp-17962-dev-1.3 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 1dcfdf3822e87d23e9b70cb83f02063adeb27209 Author: Caideyipi <[email protected]> AuthorDate: Wed Jun 17 10:38:16 2026 +0800 Fix pipe lifecycle restart order in IT (#17962) (cherry picked from commit db27f78a1b898c09f7bcf79b5e507a672a0003b4) --- .../java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeLifeCycleIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeLifeCycleIT.java b/integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeLifeCycleIT.java index 174791bcea6..7044b994262 100644 --- a/integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeLifeCycleIT.java +++ b/integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeLifeCycleIT.java @@ -448,8 +448,8 @@ public class IoTDBPipeLifeCycleIT extends AbstractPipeDualAutoIT { } try { - TestUtils.restartCluster(senderEnv); TestUtils.restartCluster(receiverEnv); + TestUtils.restartCluster(senderEnv); } catch (final Throwable e) { e.printStackTrace(); return;
