From 5f5a7801b08b2c825f496393f9ea1ed8b72be7a7 Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Thu, 25 Jan 2024 11:44:16 +0530 Subject: [PATCH] Update max_failed_attempts to 100 --- 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 880ae587e1..e5295f03c0 100644 --- a/src/Appwrite/Platform/Workers/Webhooks.php +++ b/src/Appwrite/Platform/Workers/Webhooks.php @@ -16,7 +16,7 @@ use Utopia\Queue\Message; class Webhooks extends Action { private array $errors = []; - private const MAX_FAILED_ATTEMPTS = 10; + private const MAX_FAILED_ATTEMPTS = 100; private const MAX_FILE_SIZE = 5242880; // 5 MB public static function getName(): string