Skip to content

Commit b3cc30a

Browse files
committed
Increase select timeout in FPM tester
Let's see if that helps with the recent failure spree on Azure.
1 parent d684f5f commit b3cc30a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/fpm/tests/tester.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ class Tester
622622
$read = [$this->outDesc];
623623
$write = null;
624624
$except = null;
625-
if (stream_select($read, $write, $except, 3)) {
625+
if (stream_select($read, $write, $except, $timeout=5)) {
626626
return fgets($this->outDesc);
627627
} else {
628628
return null;

0 commit comments

Comments
 (0)