You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1069 introduced a sub-process spawning mechanics. Unfortunately, it got something wrong – it mocks a CLI environment by defining STDIN, STDOUT, and STDERR streams, and the STDERR stream points to the /tmp/stderr file which got renamed to /internal/stderr:
It should either be updated to /internal/stderr or to php://stderr actually. I'm not sure if the latter would work. These defines were originally explored in #161 and, at that time, there was a bug preventing the use of php://stderr.
The text was updated successfully, but these errors were encountered:
adamziel
changed the title
Sub-processes: Source stderr output from php://stderr, not /tmp/stderr
PHP sub-processes: Source stderr output from php://stderr, not /tmp/stderr
Feb 29, 2024
#1069 introduced a sub-process spawning mechanics. Unfortunately, it got something wrong – it mocks a CLI environment by defining
STDIN
,STDOUT
, andSTDERR
streams, and theSTDERR
stream points to the/tmp/stderr
file which got renamed to/internal/stderr
:It should either be updated to
/internal/stderr
or tophp://stderr actually
. I'm not sure if the latter would work. These defines were originally explored in #161 and, at that time, there was a bug preventing the use ofphp://stderr
.The text was updated successfully, but these errors were encountered: