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
For some use cases, you need to catch exit event because close only waits for stdout.
If the application you run using spawn() creates a child process and detaches it with sharing stdout, close event will never fire even if the application is actually terminated. Which means the promise would never be resolved or rejected.
The text was updated successfully, but these errors were encountered:
For some use cases, you need to catch
exit
event becauseclose
only waits forstdout
.If the application you run using
spawn()
creates a child process and detaches it with sharingstdout
, close event will never fire even if the application is actually terminated. Which means the promise would never be resolved or rejected.The text was updated successfully, but these errors were encountered: