Re: [go-nuts] sigTERM not intercepted

2021-03-24 Thread madscientist
On 3/23/21 11:59 PM, Kurtis Rader wrote: > It sounds as if you might be running your "REST endpoint" program from > an interactive shell (i.e., a terminal) and sending SIGTERM by > pressing something like Ctrl-C. Interactive job control, which > includes how signals generated by a "terminal" are

[go-nuts] sigTERM not intercepted

2021-03-23 Thread Madscientist Microneil
Hi, I've got a REST endpoint coded in go and it communicates with various child processes to get it's work done. I've used // Set up to handle signals so we can stop when asked done := make(chan os.Signal, 3) signal.Notify(done, os.Interrupt, syscall.SIGINT, syscall.SIGTERM) and <-done to