This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch autoai_debug
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/autoai_debug by this push:
new f48ef93 change shutdownNow to shutdown
f48ef93 is described below
commit f48ef93605ad040f9beaf5d154d06163609efcba
Author: qiaojialin <[email protected]>
AuthorDate: Wed Jul 28 17:06:30 2021 +0800
change shutdownNow to shutdown
---
.../java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
b/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
index c5339bd..31b9265 100644
---
a/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
+++
b/server/src/main/java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java
@@ -161,7 +161,7 @@ public class ExclusiveWriteLogNode implements WriteLogNode,
Comparable<Exclusive
logger.warn("Waiting for current buffer being flushed interrupted");
} finally {
lock.unlock();
- FLUSH_BUFFER_THREAD_POOL.shutdownNow();
+ FLUSH_BUFFER_THREAD_POOL.shutdown();
}
long elapse = System.nanoTime() - start;
if (elapse > 3_000_000_000L) {