We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The exec statement of @ezs/spawn uses the spawn event to resolve a promise.
exec
@ezs/spawn
spawn
The pool code assume that this event exists if node version is greater or equal to 14.0.0.
pool
https://github.com/Inist-CNRS/ezs/blob/master/packages/spawn/src/pool.js#L92
But nodejs documentation says that the event was added at node 14.17.0 & 15.1.0
Consequence: when using a node between 14.0 and 14.17, the promise is not resolved (nor rejected), and the process is hanging.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
exec
statement of@ezs/spawn
uses thespawn
event to resolve a promise.The
pool
code assume that this event exists if node version is greater or equal to 14.0.0.https://github.com/Inist-CNRS/ezs/blob/master/packages/spawn/src/pool.js#L92
But nodejs documentation says that the event was added at node 14.17.0 & 15.1.0
Consequence: when using a node between 14.0 and 14.17, the promise is not resolved (nor rejected), and the process is hanging.
The text was updated successfully, but these errors were encountered: