mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
Revert "Display a message if select in FPM test timeouts"
This reverts commit e2361498d5
.
Ooops, this occurs normally during some tests, but I didn't notice
because I have slow tests disabled...
This commit is contained in:
parent
e2361498d5
commit
4b860c06ed
@ -622,11 +622,9 @@ class Tester
|
||||
$read = [$this->outDesc];
|
||||
$write = null;
|
||||
$except = null;
|
||||
$timeout = 3;
|
||||
if (stream_select($read, $write, $except, $timeout)) {
|
||||
if (stream_select($read, $write, $except, 3)) {
|
||||
return fgets($this->outDesc);
|
||||
} else {
|
||||
$this->error("Select timeout ($timeout seconds)");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user