mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Increase select timeout in FPM tester
Let's see if that helps with the recent failure spree on Azure.
This commit is contained in:
parent
d684f5fdc0
commit
b3cc30adf8
1 changed files with 1 additions and 1 deletions
|
@ -622,7 +622,7 @@ class Tester
|
|||
$read = [$this->outDesc];
|
||||
$write = null;
|
||||
$except = null;
|
||||
if (stream_select($read, $write, $except, 3)) {
|
||||
if (stream_select($read, $write, $except, $timeout=5)) {
|
||||
return fgets($this->outDesc);
|
||||
} else {
|
||||
return null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue