Merge pull request #21387 from nextcloud/backport/21380/stable19
[stable19] Increase timeout of the appstore requests
This commit is contained in:
commit
d203f8f985
|
@ -97,7 +97,7 @@ abstract class Fetcher {
|
||||||
}
|
}
|
||||||
|
|
||||||
$options = [
|
$options = [
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => ['Accept-Encoding' => 'gzip'],
|
'headers' => ['Accept-Encoding' => 'gzip'],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -252,7 +252,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
]
|
]
|
||||||
|
@ -353,7 +353,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
]
|
]
|
||||||
|
@ -449,7 +449,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
]
|
]
|
||||||
|
@ -522,7 +522,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
]
|
]
|
||||||
|
@ -582,7 +582,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
'If-None-Match' => '"myETag"',
|
'If-None-Match' => '"myETag"',
|
||||||
|
@ -655,7 +655,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
'If-None-Match' => '"myETag"',
|
'If-None-Match' => '"myETag"',
|
||||||
|
@ -743,7 +743,7 @@ abstract class FetcherBase extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
$this->equalTo($this->endpoint),
|
$this->equalTo($this->endpoint),
|
||||||
$this->equalTo([
|
$this->equalTo([
|
||||||
'timeout' => 10,
|
'timeout' => 60,
|
||||||
'headers' => [
|
'headers' => [
|
||||||
'Accept-Encoding' => 'gzip',
|
'Accept-Encoding' => 'gzip',
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue