From e93556628b67de2b812738b13c8b49f462e76871 Mon Sep 17 00:00:00 2001 From: HamadaSalhab Date: Thu, 13 Feb 2025 09:56:03 +0300 Subject: [PATCH] fix(agents-api): Retry 524 http status code --- agents-api/agents_api/common/exceptions/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/agents-api/agents_api/common/exceptions/tasks.py b/agents-api/agents_api/common/exceptions/tasks.py index 425de8924..bf788db8e 100644 --- a/agents-api/agents_api/common/exceptions/tasks.py +++ b/agents-api/agents_api/common/exceptions/tasks.py @@ -147,6 +147,7 @@ 429, # Too Many Requests (slow down, speedster!) 503, # Service Unavailable (server is having a moment) 504, # Gateway Timeout (the internet took a detour) + 524, # Gateway Timeout (the internet took a detour) )