This is an automated email from the ASF dual-hosted git repository. yongzao pushed a commit to branch robust-region-reconstruct in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit bd8187ba85c9d1fdf9a741d600da543c42b688b1 Author: Yongzao <[email protected]> AuthorDate: Tue Nov 4 14:03:16 2025 +0800 Update IoTDBRegionReconstructForIoTV1IT.java --- .../pass/commit/IoTDBRegionReconstructForIoTV1IT.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/commit/IoTDBRegionReconstructForIoTV1IT.java b/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/commit/IoTDBRegionReconstructForIoTV1IT.java index 42dee93d331..e34e92c9074 100644 --- a/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/commit/IoTDBRegionReconstructForIoTV1IT.java +++ b/integration-test/src/test/java/org/apache/iotdb/confignode/it/regionmigration/pass/commit/IoTDBRegionReconstructForIoTV1IT.java @@ -196,9 +196,10 @@ public class IoTDBRegionReconstructForIoTV1IT extends IoTDBRegionOperationReliab try { resultSet = session.executeQueryStatement("select * from root.sg.**"); } catch (StatementExecutionException e) { - if (System.currentTimeMillis() - start > 60_000L) { - fail("Cannot execute query within 60s"); + if (System.currentTimeMillis() - start > 600_000L) { + fail("Cannot execute query within 600s"); } + TimeUnit.SECONDS.sleep(1); continue; } if (resultSet.hasNext()) {
