From 7fc3f810abf7f675c69a5b98df07218ae34158b5 Mon Sep 17 00:00:00 2001 From: Robin Date: Sat, 12 Oct 2024 13:45:11 -0700 Subject: [PATCH] Update emission/storage/decorations/stats_queries.py Co-authored-by: K. Shankari --- emission/storage/decorations/stats_queries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emission/storage/decorations/stats_queries.py b/emission/storage/decorations/stats_queries.py index 29420f86a..d933d424f 100644 --- a/emission/storage/decorations/stats_queries.py +++ b/emission/storage/decorations/stats_queries.py @@ -59,7 +59,7 @@ def store_function_time(user_id: str, stage_string: str, ts: float, reading: flo Returns: - InsertResult: The result of the insert operation. """ - store_stats_entry(user_id, "stats/function_time", stage_string, ts, reading) + store_stats_entry(None, "stats/function_time", stage_string, ts, reading) def store_function_error(user_id, stage_string, ts, reading):