Caideyipi commented on code in PR #17948:
URL: https://github.com/apache/iotdb/pull/17948#discussion_r3489180334
##########
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/pipe/PipeTaskInfo.java:
##########
@@ -305,6 +368,24 @@ private void checkBeforeStartPipeInternal(final String
pipeName) throws PipeExce
}
}
+ private void checkBeforeStartPipeInternal(final String pipeName, final
boolean isTableModel)
+ throws PipeException {
+ if (!isPipeExisted(pipeName, isTableModel)) {
+ final String exceptionMessage =
+ String.format("Failed to start pipe %s, %s", pipeName,
PIPE_NOT_EXIST_MSG);
+ LOGGER.warn(exceptionMessage);
Review Comment:
Fixed in e5dc1a6 by moving the start/stop validation messages to
`ConfigNodeMessages` in both `en` and `zh` i18n sources.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]