You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2020/07/06 05:48:46 UTC

[incubator-iotdb] branch bug/restart created (now 9ceb4dd)

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

jackietien pushed a change to branch bug/restart
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at 9ceb4dd  fix restart bug

This branch includes the following new commits:

     new 9ceb4dd  fix restart bug

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-iotdb] 01/01: fix restart bug

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9ceb4ddae03d10d3b7f2216bce41f0fa300e5204
Author: JackieTien97 <Ja...@foxmail.com>
AuthorDate: Mon Jul 6 13:48:19 2020 +0800

    fix restart bug
---
 .../main/java/org/apache/iotdb/db/metadata/mnode/StorageGroupMNode.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/metadata/mnode/StorageGroupMNode.java b/server/src/main/java/org/apache/iotdb/db/metadata/mnode/StorageGroupMNode.java
index 1072e14..ce47e81 100644
--- a/server/src/main/java/org/apache/iotdb/db/metadata/mnode/StorageGroupMNode.java
+++ b/server/src/main/java/org/apache/iotdb/db/metadata/mnode/StorageGroupMNode.java
@@ -35,7 +35,6 @@ public class StorageGroupMNode extends MNode {
   public StorageGroupMNode(MNode parent, String name, long dataTTL) {
     super(parent, name);
     this.dataTTL = dataTTL;
-    this.fullPath = getFullPath();
   }
 
   public long getDataTTL() {