Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Chen authored and Rachel Chen committed Jul 23, 2024
1 parent 5e05ce5 commit 62c677a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sentry/utils/snuba.py
Original file line number Diff line number Diff line change
Expand Up @@ -1110,11 +1110,11 @@ def _bulk_snuba_query(snuba_requests: Sequence[SnubaRequest]) -> ResultSet:
quota_allowance_summary["threads_used"],
)
for k, v in quota_allowance_summary["throttled_by"].items():
k = allocation_policy_prefix + k
k = allocation_policy_prefix + "throttling_policy" + k
span.set_tag(k, v)
sentry_sdk.set_tag(k, v)
for k, v in quota_allowance_summary["rejected_by"].items():
k = allocation_policy_prefix + k
k = allocation_policy_prefix + "rejecting_policy" + k
span.set_tag(k, v)
sentry_sdk.set_tag(k, v)

Expand Down

0 comments on commit 62c677a

Please sign in to comment.