You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ji...@apache.org on 2019/06/20 05:55:51 UTC

[incubator-iotdb] branch feature_async_close_tsfile updated: fix initialization of UnseqTsFIleRecoverPerformer in OverflowProcessor

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

jiangtian 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 3c235dc  fix initialization of UnseqTsFIleRecoverPerformer in OverflowProcessor
3c235dc is described below

commit 3c235dce2d796071e914cd2da4e49f635586593c
Author: 江天 <jt...@163.com>
AuthorDate: Thu Jun 20 13:53:47 2019 +0800

    fix initialization of UnseqTsFIleRecoverPerformer in OverflowProcessor
---
 .../org/apache/iotdb/db/engine/overflow/io/OverflowProcessor.java    | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/iotdb/src/main/java/org/apache/iotdb/db/engine/overflow/io/OverflowProcessor.java b/iotdb/src/main/java/org/apache/iotdb/db/engine/overflow/io/OverflowProcessor.java
index 3c3582c..e81973f 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/engine/overflow/io/OverflowProcessor.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/engine/overflow/io/OverflowProcessor.java
@@ -193,10 +193,7 @@ public class OverflowProcessor extends Processor {
     }
 
     UnseqTsFileRecoverPerformer recoverPerformer =
-        new UnseqTsFileRecoverPerformer(workResource.logNodePrefix(),
-            workResource.getInsertFilePath(),
-            workResource.getModificationFile(), versionController, fileSchema
-        );
+        new UnseqTsFileRecoverPerformer(workResource, fileSchema);
     recoverPerformer.recover();
   }