Increase timeout of the appstore requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
79b3923a42
commit
9d541ccfd1
|
@ -97,7 +97,7 @@ abstract class Fetcher {
|
|||
}
|
||||
|
||||
$options = [
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => ['Accept-Encoding' => 'gzip'],
|
||||
];
|
||||
|
||||
|
|
|
@ -252,7 +252,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
]
|
||||
|
@ -353,7 +353,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
]
|
||||
|
@ -449,7 +449,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
]
|
||||
|
@ -522,7 +522,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
]
|
||||
|
@ -582,7 +582,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
'If-None-Match' => '"myETag"',
|
||||
|
@ -655,7 +655,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
'If-None-Match' => '"myETag"',
|
||||
|
@ -743,7 +743,7 @@ abstract class FetcherBase extends TestCase {
|
|||
->with(
|
||||
$this->equalTo($this->endpoint),
|
||||
$this->equalTo([
|
||||
'timeout' => 10,
|
||||
'timeout' => 60,
|
||||
'headers' => [
|
||||
'Accept-Encoding' => 'gzip',
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue