diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-12 09:28:41 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-07-02 23:36:24 +0200 |
commit | 9d541ccfd119c62fcd2bee464746f38df14e2fc9 (patch) | |
tree | 5bf53bfe9ff22143709b22755b2c8395e55731cd /lib/private | |
parent | 79b3923a4270f6bbbbe39eecb2c83c75cda00380 (diff) | |
download | nextcloud-server-9d541ccfd119c62fcd2bee464746f38df14e2fc9.tar.gz nextcloud-server-9d541ccfd119c62fcd2bee464746f38df14e2fc9.zip |
Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/App/AppStore/Fetcher/Fetcher.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php index c109bacf135..d8f6a8dd4c4 100644 --- a/lib/private/App/AppStore/Fetcher/Fetcher.php +++ b/lib/private/App/AppStore/Fetcher/Fetcher.php @@ -97,7 +97,7 @@ abstract class Fetcher { } $options = [ - 'timeout' => 10, + 'timeout' => 60, 'headers' => ['Accept-Encoding' => 'gzip'], ]; |