Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 42e82b5

Browse files
authored
Merge pull request symfony#135 from Kinoba/increase-timeout
Fix issue symfony#118
2 parents 770cfee + 532020b commit 42e82b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ProcessManager/WebServerReadinessProbeTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function waitUntilReady(Process $process, string $url, bool $ignoreErrors
4242
'ignore_errors' => $ignoreErrors,
4343
'protocol_version' => '1.1',
4444
'header' => ['Connection: close'],
45-
'timeout' => 1,
45+
'timeout' => 5,
4646
]]);
4747

4848
while (Process::STATUS_STARTED !== ($status = $process->getStatus()) || false === @file_get_contents($url, false, $context)) {

0 commit comments

Comments
 (0)