Skip to content

Commit

Permalink
🔧 Reduce timeout for webhook calls (#2291)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeyemwey authored Jan 25, 2024
1 parent e75e368 commit c7e6a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/webhook-server.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c7e6a0e

Please sign in to comment.