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 2020/06/20 08:57:31 UTC

[incubator-iotdb] branch master updated: [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 29728c0  [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache
29728c0 is described below

commit 29728c07a89b8cd3a85e4345717bd855a62b41f3
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();