Closed
Description
code-server
version: 2.1523-vsc1.38.1- OS Version: Linux (any)
Description
When I send a TERM or INT signal to the initial code-server process, that process quits but all the other child processes are left running. When I enter CTRL-C (interrupt - should be equivalent to INT signal) to the input of the initial process, it quits and all the other child processes quit too.
Sending TERM or INT signal to the initial process should IMHO lead to the other child processes also quitting, same like when CTRL-C is entered.
Steps to Reproduce
- Start code-server.
- Run
kill -s INT <pid>
orkill -s TERM <pid>
on the first code-server process.