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
// No `code`, `exitCode`, `exitCodeName`, `signal`{// If availablestdout,stderr,all,// This indicates a stream errorstream: "stdout",// This indicates a stream error due to `maxBuffer`maxBuffer: true|false,failed: true,timedOut: false,isCanceled: false,command: "...",}
stdout, stderr and all could either:
a) be present only if the whole stream finished before the error
b) show the partially bufferedData
The error message could be made more descriptive as well.
I can submit a PR if you think that's a good idea.
The text was updated successfully, but these errors were encountered:
When
maxBuffer
is reached, the rejected error has a different shape than usual:Shouldn't it have the same shape? For example:
stdout
,stderr
andall
could either:a) be present only if the whole stream finished before the error
b) show the partially
bufferedData
The error message could be made more descriptive as well.
I can submit a PR if you think that's a good idea.
The text was updated successfully, but these errors were encountered: