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
This update causes the start script to "exit gracefully" on non-interactive execution so that the app is not served.
Specifically, it seems that a statement process.stdin.on('end', f); triggers the invocation of f when the code is run e.g. through systemd. (Why would non-interactive execution cause process.stdin to act as though it has read an EOF?)
Anyway, it would be nice to be able to run the start script through systemd (without just commenting out the offending block).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This update causes the start script to "exit gracefully" on non-interactive execution so that the app is not served.
Specifically, it seems that a statement
process.stdin.on('end', f);
triggers the invocation off
when the code is run e.g. through systemd. (Why would non-interactive execution causeprocess.stdin
to act as though it has read an EOF?)Anyway, it would be nice to be able to run the start script through systemd (without just commenting out the offending block).
Beta Was this translation helpful? Give feedback.
All reactions