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
When running more than 10 execa() calls in parallel, a maxListeners warning is printed.
For this bug to happen, the option must be an array, and one of the value must be 'inherit' (or the equivalent 0, 1, 2, process.stdin, process.stdout or process.stderr). That's because each process pipes from/to the same global object, which creates more than 10 event listeners on that event emitter.
When running more than 10
execa()
calls in parallel, amaxListeners
warning is printed.For this bug to happen, the option must be an array, and one of the value must be
'inherit'
(or the equivalent0
,1
,2
,process.stdin
,process.stdout
orprocess.stderr
). That's because each process pipes from/to the same global object, which creates more than 10 event listeners on that event emitter.The text was updated successfully, but these errors were encountered: