From 22ffaaf4103e0f381896d9da27a58627cd6697f3 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 15 Mar 2025 18:06:02 +0800 Subject: [PATCH] Refine --- influxdb_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxdb_api.py b/influxdb_api.py index 553da9a..4b49cc5 100644 --- a/influxdb_api.py +++ b/influxdb_api.py @@ -1946,7 +1946,7 @@ def query_all_records_by_date_with_type(query_date: str, query_type: str, bucket elif measurement == "link": result_records.append({ "time": record["_time"], - "linkID": record["ID"], + "ID": record["ID"], "flow": record["flow"], "velocity": record["velocity"], "headloss": record["headloss"],