Nanashi
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
discord/http.py
|
|
@ -486,8 +486,8 @@ class HTTPClient: |
|
|
|
|
|
|
|
continue |
|
|
|
|
|
|
|
# we've received a 500, 502, or 504, unconditional retry |
|
|
|
if response.status in {500, 502, 504}: |
|
|
|
# we've received a 500, 502, 504, or 524, unconditional retry |
|
|
|
if response.status in {500, 502, 504, 524}: |
|
|
|
await asyncio.sleep(1 + tries * 2) |
|
|
|
continue |
|
|
|
|
|
|
|