Skip to content

Commit bcb733f

Browse files
authored
fix(seer): Bump concurrency for settings endpoint (#95702)
So we can load a lot of prefs at once
1 parent 91676c0 commit bcb733f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sentry/api/endpoints/project_seer_preferences.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ class ProjectSeerPreferencesEndpoint(ProjectEndpoint):
5252
RateLimitCategory.ORGANIZATION: RateLimit(limit=60, window=60),
5353
},
5454
"GET": {
55-
RateLimitCategory.IP: RateLimit(limit=500, window=60),
56-
RateLimitCategory.USER: RateLimit(limit=500, window=60),
57-
RateLimitCategory.ORGANIZATION: RateLimit(limit=5000, window=60),
55+
RateLimitCategory.IP: RateLimit(limit=1000, window=60, concurrent_limit=500),
56+
RateLimitCategory.USER: RateLimit(limit=1000, window=60, concurrent_limit=500),
57+
RateLimitCategory.ORGANIZATION: RateLimit(limit=5000, window=60, concurrent_limit=1000),
5858
},
5959
}
6060

0 commit comments

Comments
 (0)