We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cd682 commit f4eca44Copy full SHA for f4eca44
src/vennv/vapm/Thread.php
@@ -452,6 +452,7 @@ public function start(array $mode = DescriptorSpec::BASIC): Promise
452
if ($n > 0) {
453
foreach ($read as $stream) {
454
if (!feof($stream)) {
455
+ stream_set_blocking($stream, false);
456
$data = stream_get_contents($stream, 1024);
457
if ($data === false || $data === '') continue;
458
$stream === $pipes[1] ? $output .= $data : $error .= $data;
0 commit comments