From 68ccaf17b16a63690bc41b4c19c0201ec2787272 Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:29:07 +0530 Subject: [PATCH] Revert max failed attempts to 1- --- src/Appwrite/Platform/Workers/Webhooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Workers/Webhooks.php b/src/Appwrite/Platform/Workers/Webhooks.php index 1bd30b0ebd..7bf4f31651 100644 --- a/src/Appwrite/Platform/Workers/Webhooks.php +++ b/src/Appwrite/Platform/Workers/Webhooks.php @@ -12,7 +12,7 @@ use Utopia\Queue\Message; class Webhooks extends Action { private array $errors = []; - private const MAX_FAILED_ATTEMPTS = 2; + private const MAX_FAILED_ATTEMPTS = 10; public static function getName(): string {