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

[incubator-iotdb] 01/01: [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache

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

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

commit 4f68226a4968c86da01d20b706d6da202086457c
Author: jack870131 <ja...@outlook.com>
AuthorDate: Sat Jun 20 13:55:15 2020 +0800

    [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache
---
 .../main/java/org/apache/iotdb/db/engine/cache/ChunkMetadataCache.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/engine/cache/ChunkMetadataCache.java b/server/src/main/java/org/apache/iotdb/db/engine/cache/ChunkMetadataCache.java
index dcb3cc8..6fc911f 100644
--- a/server/src/main/java/org/apache/iotdb/db/engine/cache/ChunkMetadataCache.java
+++ b/server/src/main/java/org/apache/iotdb/db/engine/cache/ChunkMetadataCache.java
@@ -125,7 +125,7 @@ public class ChunkMetadataCache {
     }
 
     AccountableString key = new AccountableString(filePath + IoTDBConstant.PATH_SEPARATOR
-        + seriesPath.getDevice() + seriesPath.getMeasurement());
+        + seriesPath.getDevice() + IoTDBConstant.PATH_SEPARATOR + seriesPath.getMeasurement());
 
     cacheRequestNum.incrementAndGet();