From 0bd182c2a7dfbec0c4d146a586729aef8bfd770c Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 5 Feb 2022 12:33:52 -0500 Subject: [PATCH] Lower the default guzzle timeouts; ref pterodactyl/panel#3936 --- config/pterodactyl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/pterodactyl.php b/config/pterodactyl.php index b7cd12559..e21d1859f 100644 --- a/config/pterodactyl.php +++ b/config/pterodactyl.php @@ -84,8 +84,8 @@ return [ | Configure the timeout to be used for Guzzle connections here. */ 'guzzle' => [ - 'timeout' => env('GUZZLE_TIMEOUT', 30), - 'connect_timeout' => env('GUZZLE_CONNECT_TIMEOUT', 10), + 'timeout' => env('GUZZLE_TIMEOUT', 15), + 'connect_timeout' => env('GUZZLE_CONNECT_TIMEOUT', 5), ], /*