Skip to content

Commit 1c73b91

Browse files
authored
fix(issue summary): Bump issue summary rate limits (#90068)
We were hitting rate limits for issue summary in the sentry org, so bumping
1 parent 0dbf372 commit 1c73b91

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/sentry/api/endpoints/group_ai_summary.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@ class GroupAiSummaryEndpoint(GroupAiEndpoint):
2626
enforce_rate_limit = True
2727
rate_limits = {
2828
"POST": {
29-
RateLimitCategory.IP: RateLimit(limit=10, window=60),
30-
RateLimitCategory.USER: RateLimit(limit=10, window=60),
31-
RateLimitCategory.ORGANIZATION: RateLimit(
32-
limit=30, window=60
33-
), # TODO: Raise this limit when we move out of internal preview
29+
RateLimitCategory.IP: RateLimit(limit=20, window=60),
30+
RateLimitCategory.USER: RateLimit(limit=20, window=60),
31+
RateLimitCategory.ORGANIZATION: RateLimit(limit=100, window=60),
3432
}
3533
}
3634

0 commit comments

Comments
 (0)