Skip to content

Commit ae58773

Browse files
committed
Fix the problem that "StateMachineProceduree not set next state, but return HAS_MORE_STATE".
1 parent 36dadf5 commit ae58773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ protected StateMachineProcedure.Flow executeFromState(
124124
this::setFailure,
125125
true);
126126
collectPayload4Pipe(env);
127-
break;
127+
return Flow.NO_MORE_STATE;
128128
default:
129129
setFailure(
130130
new ProcedureException(

0 commit comments

Comments
 (0)