Skip to content

Commit

Permalink
fix(get_fx_most_used_probes): remove extra quotes around probe name (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
edugfilho authored Oct 25, 2024
1 parent 2602edf commit fb54c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glam/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def _get_fx_most_used_probes(days=30, limit=9):
"-total",
)
)
probe_names = [f'"{p["probe_name"]}"' for p in most_used_probes]
probe_names = [f'{p["probe_name"]}' for p in most_used_probes]

legacy_table_name = (
f"`{GLAM_BQ_PROD_PROJECT}.glam_etl.glam_desktop_nightly_aggregates`"
Expand Down

0 comments on commit fb54c03

Please sign in to comment.