This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 89ff4636e3e fix FAST_LAST_QUERY metrics, set finish = true when use
cached
89ff4636e3e is described below
commit 89ff4636e3e18ebacdc7546f061a300af39046d6
Author: CritasWang <[email protected]>
AuthorDate: Wed Aug 13 16:07:54 2025 +0800
fix FAST_LAST_QUERY metrics, set finish = true when use cached
---
.../org/apache/iotdb/db/protocol/rest/v2/impl/RestApiServiceImpl.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/rest/v2/impl/RestApiServiceImpl.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/rest/v2/impl/RestApiServiceImpl.java
index 7c52c9b7bc5..1dfb3da8c45 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/rest/v2/impl/RestApiServiceImpl.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/rest/v2/impl/RestApiServiceImpl.java
@@ -198,6 +198,7 @@ public class RestApiServiceImpl extends RestApiService {
targetDataSet.addValuesItem(valueList);
targetDataSet.addValuesItem(dataTypeList);
}
+ finish = true;
return Response.ok().entity(targetDataSet).build();
} catch (Exception e) {