Lower the default guzzle timeouts; ref pterodactyl/panel#3936

This commit is contained in:
Dane Everitt 2022-02-05 12:33:52 -05:00
parent 5120590e47
commit 0bd182c2a7
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -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),
],
/*