Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-12 10:28:41 +0300
committerJoas Schilling <coding@schilljs.com>2020-07-03 11:10:07 +0300
commitb5a64321f57bba383ce208f1bcd075fe97b23a1d (patch)
tree3ee8d3a429efd4f0b522fc0f081222de38d10489 /lib
parent3c3008aab853c48a853e4de51ea714f4b07aa3f4 (diff)
Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/AppStore/Fetcher/Fetcher.php2
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'],
];