From 9a2954fdd85744c7e1c7fbce1b38c73424387127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Gl=C3=B6ggler?= Date: Thu, 14 Nov 2024 11:15:19 +0100 Subject: [PATCH] fixes #1073 --- lib/Models/REST/RestClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Models/REST/RestClient.php b/lib/Models/REST/RestClient.php index 9c218508..f943d6e6 100644 --- a/lib/Models/REST/RestClient.php +++ b/lib/Models/REST/RestClient.php @@ -62,8 +62,8 @@ public function __construct($config) 'url' => $config['service_url'], 'username' => $config['service_user'], 'password' => $config['service_password'], - 'timeout' => 5, - 'connect_timeout' => 5, + 'timeout' => 60, + 'connect_timeout' => 60, 'features' => [ 'lucene' => false ]