You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2022/11/29 01:10:40 UTC

[iotdb] branch rel/1.0 updated: [To rel/1.0] [IOTDB-5067] Change error log in ConfigExecutin to warn level (#8227)

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new e01d5ccab9 [To rel/1.0] [IOTDB-5067] Change error log in ConfigExecutin to warn level (#8227)
e01d5ccab9 is described below

commit e01d5ccab92a140c71be7569689c27fffa30bc37
Author: Jackie Tien <ja...@gmail.com>
AuthorDate: Tue Nov 29 09:10:34 2022 +0800

    [To rel/1.0] [IOTDB-5067] Change error log in ConfigExecutin to warn level (#8227)
---
 .../org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java b/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
index c18be1ecf5..b32d55adf5 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/ConfigExecution.java
@@ -129,7 +129,7 @@ public class ConfigExecution implements IQueryExecution {
   }
 
   private void fail(Throwable cause) {
-    LOGGER.error("Failures happened during running ConfigExecution.", cause);
+    LOGGER.warn("Failures happened during running ConfigExecution.", cause);
     stateMachine.transitionToFailed(cause);
     ConfigTaskResult result;
     if (cause instanceof IoTDBException) {