From 4c3e53edf4ff90e3fcf195c429601a553d661cd8 Mon Sep 17 00:00:00 2001 From: Xua <17090652+XuaTheGrate@users.noreply.github.com> Date: Sat, 19 Oct 2019 21:40:19 +1300 Subject: [PATCH] Fix webhooks not re-raising after retries run out --- discord/webhook.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/webhook.py b/discord/webhook.py index e06b62815..00e154292 100644 --- a/discord/webhook.py +++ b/discord/webhook.py @@ -222,6 +222,8 @@ class AsyncWebhookAdapter(WebhookAdapter): raise NotFound(r, response) else: raise HTTPException(r, response) + # no more retries + raise HTTPException(r, response) async def handle_execution_response(self, response, *, wait): data = await response @@ -308,6 +310,8 @@ class RequestsWebhookAdapter(WebhookAdapter): raise NotFound(r, response) else: raise HTTPException(r, response) + # no more retries + raise HTTPException(r, response) def handle_execution_response(self, response, *, wait): if not wait: