-
Notifications
You must be signed in to change notification settings - Fork 31k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
process.title behaves different on linux with node >= 12.17 from other platform #35503
Labels
child_process
Issues and PRs related to the child_process subsystem.
Comments
There are two "process titles" in Linux
This is the commit that broke it: libuv/libuv@7b28d36#diff-061ff4a1f558b9316c85e332cfe90b66b3b5b612455249bfc1bb19a24e7f28e1 , line 101 |
santigimeno
pushed a commit
to santigimeno/libuv
that referenced
this issue
Dec 3, 2020
The call to `uv__set_process_title()` had been accidentally removed. Fixes: libuv#3037 PR-URL: libuv#3019 Refs: nodejs/node#35503 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
santigimeno
pushed a commit
to santigimeno/libuv
that referenced
this issue
Dec 3, 2020
The call to `uv__set_process_title()` had been accidentally removed. Fixes: libuv#3037 PR-URL: libuv#3019 Refs: nodejs/node#35503 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Still the issue exist with normal node main process itself for version >= v12.17.0Node: v12.20.0 timer.js
|
JeffroMF
pushed a commit
to JeffroMF/libuv
that referenced
this issue
May 16, 2022
The call to `uv__set_process_title()` had been accidentally removed. Fixes: libuv#3037 PR-URL: libuv#3019 Refs: nodejs/node#35503 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This was already fixed in libuv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What steps will reproduce the bug?
I have this following script to spin up a noop process
Then run
ps -p pid -o comm
On linux node > 12.17, the COMMAND shows 'node', where on MAC node with any version or linux with node <=12.16 gives COMMAND noop-process
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior?
It should always show COMMAND is "noop-process"
What do you see instead?
Additional information
The text was updated successfully, but these errors were encountered: