From c7e6a0e184f9e8c97a7edda7e8036311c8fd2e68 Mon Sep 17 00:00:00 2001 From: Jannik Date: Thu, 25 Jan 2024 10:29:12 +0100 Subject: [PATCH] :wrench: Reduce timeout for webhook calls (#2291) --- config/webhook-server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webhook-server.php b/config/webhook-server.php index da9de0545..dff99537e 100644 --- a/config/webhook-server.php +++ b/config/webhook-server.php @@ -54,7 +54,7 @@ * If a call to a webhook takes longer that this amount of seconds * the attempt will be considered failed. */ - 'timeout_in_seconds' => 3, + 'timeout_in_seconds' => env('WEBHOOK_SERVER_TIMEOUT_IN_SECONDS', 1), /* * The amount of times the webhook should be called before we give up.