You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/11/17 03:26:00 UTC

[iotdb] branch IWritableMemChunkGroup updated: remove useless change

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

haonan pushed a commit to branch IWritableMemChunkGroup
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/IWritableMemChunkGroup by this push:
     new 9ead9db  remove useless change
9ead9db is described below

commit 9ead9db4e1e04650e3903e617464965788af446d
Author: HTHou <hh...@outlook.com>
AuthorDate: Wed Nov 17 11:25:27 2021 +0800

    remove useless change
---
 .../src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java  | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java
index 1d0ae09..17deb09 100644
--- a/server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java
+++ b/server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java
@@ -1281,10 +1281,13 @@ public class IoTDBDescriptor {
                   + queryMemoryAllocateProportion);
         }
       }
-
-      conf.setMaxQueryDeduplicatedPathNum(
-          Integer.parseInt(properties.getProperty("max_deduplicated_path_num")));
     }
+
+    conf.setMaxQueryDeduplicatedPathNum(
+        Integer.parseInt(
+            properties.getProperty(
+                "max_deduplicated_path_num",
+                Integer.toString(conf.getMaxQueryDeduplicatedPathNum()))));
   }
 
   @SuppressWarnings("squid:S3518") // "proportionSum" can't be zero