This is an automated email from the ASF dual-hosted git repository.
yongzao 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 0505dfb9cb2 Fix the returning state of NotifyRegionMigrationProcedure
(#15797)
0505dfb9cb2 is described below
commit 0505dfb9cb26f2211f765f47c95d5057efce1b37
Author: Li Yu Heng <[email protected]>
AuthorDate: Mon Jun 23 09:59:06 2025 +0800
Fix the returning state of NotifyRegionMigrationProcedure (#15797)
---
.../procedure/impl/region/NotifyRegionMigrationProcedure.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/NotifyRegionMigrationProcedure.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/NotifyRegionMigrationProcedure.java
index 96432852437..a02f60c0476 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/NotifyRegionMigrationProcedure.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/NotifyRegionMigrationProcedure.java
@@ -67,7 +67,7 @@ public class NotifyRegionMigrationProcedure
return Flow.NO_MORE_STATE;
}
LOGGER.info("[pid{}][NotifyRegionMigration] state {} complete",
getProcId(), state);
- return Flow.HAS_MORE_STATE;
+ return Flow.NO_MORE_STATE;
}
@Override