Skip to content

Commit

Permalink
Update emission/storage/decorations/stats_queries.py
Browse files Browse the repository at this point in the history
Co-authored-by: K. Shankari <[email protected]>
  • Loading branch information
TeachMeTW and shankari authored Oct 12, 2024
1 parent 05bac58 commit e23d4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emission/storage/decorations/stats_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def store_stats_entry(user_id, metadata_key, name, ts, reading):
"reading": reading
}
new_entry = ecwe.Entry.create_entry(user_id, metadata_key, data)
return esta.TimeSeries.get_time_series(user_id).insert(new_entry)
return esta.TimeSeries.get_non_user_time_series().insert(new_entry)

def store_function_time(user_id: str, stage_string: str, ts: float, reading: float):
"""
Expand Down

0 comments on commit e23d4b6

Please sign in to comment.