diff options
| -rw-r--r-- | ext/openssl/tests/bug72333.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/tests/bug72333.phpt b/ext/openssl/tests/bug72333.phpt index fac59853f9..a7b1c93b15 100644 --- a/ext/openssl/tests/bug72333.phpt +++ b/ext/openssl/tests/bug72333.phpt @@ -19,7 +19,7 @@ $serverCode = <<<'CODE' stream_set_blocking($conn, false); usleep(50000); $read = [$conn]; - while (stream_select($read, $write, $except, 180)) { + while (stream_select($read, $write, $except, 1)) { $result = fread($conn, 100000); if (!$result) { break; @@ -42,7 +42,7 @@ $clientCode = <<<'CODE' function blocking_fwrite($fp, $buf) { $write = [$fp]; $total = 0; - while (stream_select($read, $write, $except, 180)) { + while (stream_select($read, $write, $except, 1)) { $result = fwrite($fp, $buf); if (!$result) { break; |
