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 2019/06/12 06:12:49 UTC

[incubator-iotdb] branch feature_async_close_tsfile updated: fix buffer write processor reopen initializing bug

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

qiaojialin pushed a commit to branch feature_async_close_tsfile
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/feature_async_close_tsfile by this push:
     new d020722  fix buffer write processor reopen initializing bug
d020722 is described below

commit d020722b75433752b0af909ec6b35ca2336d967d
Author: qiaojialin <64...@qq.com>
AuthorDate: Wed Jun 12 14:12:34 2019 +0800

    fix buffer write processor reopen initializing bug
---
 .../org/apache/iotdb/db/engine/bufferwrite/BufferWriteProcessor.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iotdb/src/main/java/org/apache/iotdb/db/engine/bufferwrite/BufferWriteProcessor.java b/iotdb/src/main/java/org/apache/iotdb/db/engine/bufferwrite/BufferWriteProcessor.java
index bc43479..34f8a37 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/engine/bufferwrite/BufferWriteProcessor.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/engine/bufferwrite/BufferWriteProcessor.java
@@ -98,7 +98,7 @@ public class BufferWriteProcessor extends Processor {
   private WriteLogNode logNode;
   private VersionController versionController;
 
-  private boolean isClosing = false;
+  private boolean isClosing = true;
   private boolean isClosed = false;
 
   private TsFileResource currentTsFileResource;