Increase select timeout in FPM tester

Let's see if that helps with the recent failure spree on Azure.
This commit is contained in:
Nikita Popov 2020-01-09 10:19:02 +01:00
parent d684f5fdc0
commit b3cc30adf8

View file

@ -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;