Skip to content

Commit 465170b

Browse files
authored
Adjust error message (#17084)
* Fix the problem that "StateMachineProceduree not set next state, but return HAS_MORE_STATE". * Adjust error message.
1 parent 2e46872 commit 465170b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -235,11 +235,8 @@ protected void onAllReplicasetFailure(
235235
new ProcedureException(
236236
new MetadataException(
237237
String.format(
238-
"Alter timeseries %s data type from %s to %s in schema regions failed. Failures: %s",
239-
measurementPath.getFullPath(),
240-
measurementPath.getSeriesType(),
241-
dataType,
242-
printFailureMap()))));
238+
"Alter timeseries %s data type to %s in schema regions failed. Failures: %s",
239+
measurementPath.getFullPath(), dataType, printFailureMap()))));
243240
interruptTask();
244241
}
245242
};

0 commit comments

Comments
 (0)