Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: set scope_id property for project scoped abuse quota #67791

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/sentry/quotas/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ def get_quotas(
if key:
key.project = project

results = [*self.get_abuse_quotas(project.organization)]
results = []
for quota in self.get_abuse_quotas(project.organization):
if quota.scope == QuotaScope.PROJECT:
quota.scope_id = project.id
results.append(quota)

# If the organization belongs to the disabled list, we want to stop ingesting custom metrics.
if project.organization.id in (options.get("custom-metrics-ingestion-disabled-orgs") or ()):
Expand Down