Skip to content

Commit d5f26de

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Revert "Display a message if select in FPM test timeouts"
2 parents c669a1a + 4b860c0 commit d5f26de

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sapi/fpm/tests/tester.inc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -622,11 +622,9 @@ class Tester
622622
$read = [$this->outDesc];
623623
$write = null;
624624
$except = null;
625-
$timeout = 3;
626-
if (stream_select($read, $write, $except, $timeout)) {
625+
if (stream_select($read, $write, $except, 3)) {
627626
return fgets($this->outDesc);
628627
} else {
629-
$this->error("Select timeout ($timeout seconds)");
630628
return null;
631629
}
632630
}

0 commit comments

Comments
 (0)