fix: bug fix

This commit is contained in:
icecheng 2025-09-19 16:48:43 +08:00
parent 812636a1ea
commit e919a1ed9b

View File

@ -168,7 +168,7 @@ class StarRocksMetricsService:
f"Querying metric '{metric_name}' from product '{product_id}' from {start_dt} to {end_dt}") f"Querying metric '{metric_name}' from product '{product_id}' from {start_dt} to {end_dt}")
# Execute the query # Execute the query
result = self.starrocks_client.execute_query( result = await self.starrocks_client.execute_query(
query=sql_query, query=sql_query,
params=(start_dt, end_dt, product_id) params=(start_dt, end_dt, product_id)
) )