From 4a4b97c5abeb85d470510ce24f36a1ae579ceb61 Mon Sep 17 00:00:00 2001 From: Mirian Okradze Date: Mon, 8 Jan 2024 13:03:47 +0400 Subject: [PATCH] fix: phone call retry --- apps/worker/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/worker/main.py b/apps/worker/main.py index c5e4cd914..74b410373 100644 --- a/apps/worker/main.py +++ b/apps/worker/main.py @@ -137,9 +137,6 @@ def register_campaign_phone_call_tasks(): @app.task( name="make-phone-call", - autoretry_for=(Exception,), - retry_backoff=2, - max_retries=5, queue="phone_call_queue", ) def make_phone_call(campaign_id: str, contact_id: str, account_id: str):