Skip to content

Commit a412a62

Browse files
authored
chore(ratelimit): Increase limit for ProjectGroupIndexEndpoint (#54379)
Bumping it up to 5 rps to support an org with 1000+ projects and they are hitting the org-wide limits for this.
1 parent 43f8754 commit a412a62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sentry/api/endpoints/project_group_index.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ class ProjectGroupIndexEndpoint(ProjectEndpoint, EnvironmentMixin):
3232

3333
rate_limits = {
3434
"GET": {
35-
RateLimitCategory.IP: RateLimit(3, 1),
36-
RateLimitCategory.USER: RateLimit(3, 1),
37-
RateLimitCategory.ORGANIZATION: RateLimit(3, 1),
35+
RateLimitCategory.IP: RateLimit(5, 1),
36+
RateLimitCategory.USER: RateLimit(5, 1),
37+
RateLimitCategory.ORGANIZATION: RateLimit(5, 1),
3838
}
3939
}
4040

0 commit comments

Comments
 (0)