mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
c3267a58c9
commit
b6d5979d0a
2 changed files with 4 additions and 4 deletions
|
|
@ -97,7 +97,7 @@ abstract class Fetcher {
|
|||
}
|
||||
|
||||
$options = [
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
];
|
||||
|
||||
if ($ETag !== '') {
|
||||
|
|
|
|||
|
|
@ -550,7 +550,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'If-None-Match' => '"myETag"'
|
||||
]
|
||||
|
|
@ -622,7 +622,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'If-None-Match' => '"myETag"',
|
||||
]
|
||||
|
|
@ -709,7 +709,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
])
|
||||
)
|
||||
->willReturn($response);
|
||||
|
|
|
|||
Loading…
Reference in a new issue