diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-12 09:28:41 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-07-03 10:10:07 +0200 |
commit | b5a64321f57bba383ce208f1bcd075fe97b23a1d (patch) | |
tree | 3ee8d3a429efd4f0b522fc0f081222de38d10489 /lib/private/App/AppStore | |
parent | 3c3008aab853c48a853e4de51ea714f4b07aa3f4 (diff) | |
download | nextcloud-server-b5a64321f57bba383ce208f1bcd075fe97b23a1d.tar.gz nextcloud-server-b5a64321f57bba383ce208f1bcd075fe97b23a1d.zip |
Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/App/AppStore')
-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 2f4e8b047d9..8415eed1ff0 100644 --- a/lib/private/App/AppStore/Fetcher/Fetcher.php +++ b/lib/private/App/AppStore/Fetcher/Fetcher.php @@ -96,7 +96,7 @@ abstract class Fetcher { } $options = [ - 'timeout' => 10, + 'timeout' => 60, 'headers' => ['Accept-Encoding' => 'gzip'], ]; |