This is an automated email from the ASF dual-hosted git repository.
JackieTien97 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 6b0354f4f15 Suppress pull commit progress log when subscription is
disabled (#18564)
6b0354f4f15 is described below
commit 6b0354f4f159ca4cc470f2bb4d3a91711c9fe628
Author: Caideyipi <[email protected]>
AuthorDate: Wed Sep 2 09:29:54 2026 +0800
Suppress pull commit progress log when subscription is disabled (#18564)
---
.../async/handlers/rpc/subscription/PullCommitProgressRPCHandler.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/client/async/handlers/rpc/subscription/PullCommitProgressRPCHandler.java
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/client/async/handlers/rpc/subscription/PullCommitProgressRPCHandler.java
index 5c44d10339d..a5eed8c9be0 100644
---
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/client/async/handlers/rpc/subscription/PullCommitProgressRPCHandler.java
+++
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/client/async/handlers/rpc/subscription/PullCommitProgressRPCHandler.java
@@ -54,7 +54,8 @@ public class PullCommitProgressRPCHandler
if (response.getStatus().getCode() ==
TSStatusCode.SUCCESS_STATUS.getStatusCode()) {
LOGGER.info(
ConfigNodeMessages.SUCCESSFULLY_ON_DATANODE, requestType,
formattedTargetLocation);
- } else {
+ } else if (response.getStatus().getCode()
+ != TSStatusCode.UNSUPPORTED_OPERATION.getStatusCode()) {
LOGGER.error(
ConfigNodeMessages.FAILED_TO_ON_DATANODE_RESPONSE,
requestType,