This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch rel/0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/rel/0.12 by this push:
new 88bc428 shutdown FLUSH_BUFFER_THREAD_POOL (#3643)
88bc428 is described below
commit 88bc4289a61950cdb89c823b434931b280b98433
Author: Jialin Qiao <[email protected]>
AuthorDate: Wed Jul 28 04:59:47 2021 -0500
shutdown FLUSH_BUFFER_THREAD_POOL (#3643)
---
.../java/org/apache/iotdb/db/writelog/node/ExclusiveWriteLogNode.java | 1 +
1 file changed, 1 insertion(+)
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 e982c77..b1a4ca2 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
@@ -210,6 +210,7 @@ public class ExclusiveWriteLogNode implements WriteLogNode,
Comparable<Exclusive
deleted.set(true);
return this.bufferArray;
} finally {
+ FLUSH_BUFFER_THREAD_POOL.shutdown();
lock.unlock();
}
}