Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: return HTTP 429 - too many requests when rate limit reached
  • Loading branch information
ludomikula committed Jul 10, 2023
commit 887cbe2f4fddb8316956c7a06feb0cfc6f0a8db3
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public enum BizError {
INFRA_REDIS_TIMEOUT(500, 5006),
INFRA_MONGO_TIMEOUT(500, 5007),
INVALID_PERMISSION_OPERATION(500, 5008),
REQUEST_THROTTLED(500, 5009),
REQUEST_THROTTLED(429, 5009),
SERVER_NOT_READY(503, 5010),
REDIRECT(302, 5011),

Expand Down