This is an automated email from the ASF dual-hosted git repository.
hui 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 09e256656f Change to Debug level (#7871)
09e256656f is described below
commit 09e256656fd59d0eeec8962d4206684d070ddcb0
Author: Jackie Tien <[email protected]>
AuthorDate: Wed Nov 2 10:22:02 2022 +0800
Change to Debug level (#7871)
---
.../iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
b/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
index a84f4e9c4e..7a4841bc45 100644
---
a/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
+++
b/server/src/main/java/org/apache/iotdb/db/mpp/execution/fragment/FragmentInstanceExecution.java
@@ -59,7 +59,7 @@ public class FragmentInstanceExecution {
FragmentInstanceExecution execution =
new FragmentInstanceExecution(instanceId, context, driver,
stateMachine);
execution.initialize(failedInstances, scheduler);
- LOGGER.info("timeout is {}ms.", timeOut);
+ LOGGER.debug("timeout is {}ms.", timeOut);
scheduler.submitDrivers(instanceId.getQueryId(), ImmutableList.of(driver),
timeOut);
return execution;
}