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:58 UTC

[incubator-iotdb] branch missing_dot_between_deviceid_and_sensorid created (now 4f68226)

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

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


      at 4f68226  [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache

This branch includes the following new commits:

     new 4f68226  [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache

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: [IOTDB-777]Missing dot between deviceId and sensorId in chunkMetadataCache

Posted by ts...@apache.org.
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();