Skip to content

Commit

Permalink
fix(metrics): restore extra filter per query
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Sep 30, 2024
1 parent 945df91 commit 37bb1a2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ def get_slice_query_context(slice, query_contexts, extra_filters=None):
"filters": extra_filters
}

if extra_filters:
for query in query_context["queries"]:
query["filters"] += extra_filters

return query_context


Expand Down

0 comments on commit 37bb1a2

Please sign in to comment.