aboutsummaryrefslogtreecommitdiff
path: root/discord/http.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2020-09-09 21:24:14 -0400
committerRapptz <[email protected]>2020-09-09 21:24:14 -0400
commit450e71f086b548cd294b7439d973befc9284193a (patch)
treed5c6e34f1b31a835e95f25f2bf4a891b235b7f19 /discord/http.py
parentGuard uses of the keep alive thread in case they're None (diff)
downloaddiscord.py-450e71f086b548cd294b7439d973befc9284193a.tar.xz
discord.py-450e71f086b548cd294b7439d973befc9284193a.zip
Add a more concrete exception for 500 status codes.
Fixes #5797
Diffstat (limited to 'discord/http.py')
-rw-r--r--discord/http.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/discord/http.py b/discord/http.py
index d91664c9..1ad11d9e 100644
--- a/discord/http.py
+++ b/discord/http.py
@@ -33,7 +33,7 @@ import weakref
import aiohttp
-from .errors import HTTPException, Forbidden, NotFound, LoginFailure, GatewayNotFound
+from .errors import HTTPException, Forbidden, NotFound, LoginFailure, DiscordServerError, GatewayNotFound
from .gateway import DiscordClientWebSocketResponse
from . import __version__, utils
@@ -252,6 +252,9 @@ class HTTPClient:
raise
# We've run out of retries, raise.
+ if r.status >= 500:
+ raise DiscordServerError(r, data)
+
raise HTTPException(r, data)
async def get_from_cdn(self, url):
@@ -659,7 +662,7 @@ class HTTPClient:
def get_template(self, code):
return self.request(Route('GET', '/guilds/templates/{code}', code=code))
-
+
def create_from_template(self, code, name, region, icon):
payload = {
'name': name,