You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/region/AddRegionPeerProcedure.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -123,8 +123,9 @@ protected Flow executeFromState(ConfigNodeProcedureEnv env, AddRegionPeerState s
123
123
returnwarnAndRollBackAndNoMoreState(
124
124
env, handler, String.format("%s result is %s", state, result.getTaskStatus()));
125
125
casePROCESSING:
126
-
// should never happen
127
-
returnwarnAndRollBackAndNoMoreState(env, handler, "should never return PROCESSING");
126
+
LOGGER.info(
127
+
"waitTaskFinish() returns PROCESSING, which means the waiting has been interrupted, this procedure will end without rollback");
0 commit comments