This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new e78fcbfb54a ignore (#16991)
e78fcbfb54a is described below
commit e78fcbfb54a67306c8811f110f58c23264726147
Author: Caideyipi <[email protected]>
AuthorDate: Thu Jan 8 18:38:52 2026 +0800
ignore (#16991)
---
.../java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
index 1b56a00b325..77f2b143966 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/agent/runtime/PipeAgentLauncher.java
@@ -91,7 +91,8 @@ class PipeAgentLauncher {
PipeDataNodeAgent.plugin().doRegister(meta);
}
} catch (Exception e) {
- throw new StartupException(e);
+ // Ignore the pipe plugin errors and continue to start
+ LOGGER.warn("Failure when register pipe plugins, will ignore.", e);
}
}