Skip to content

Commit 8b7e423

Browse files
committed
Fix the returning state of NotifyRegionMigrationProcedure (#15797)
(cherry picked from commit 0505dfb)
1 parent 5f6c2e6 commit 8b7e423

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/NotifyRegionMigrationProcedure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected Flow executeFromState(ConfigNodeProcedureEnv env, NotifyRegionMigratio
6767
return Flow.NO_MORE_STATE;
6868
}
6969
LOGGER.info("[pid{}][NotifyRegionMigration] state {} complete", getProcId(), state);
70-
return Flow.HAS_MORE_STATE;
70+
return Flow.NO_MORE_STATE;
7171
}
7272

7373
@Override

0 commit comments

Comments
 (0)