Hi! I’ve set
kill_signal = ‘SIGTERM’
kill_timeout = 30
in Fly.toml – in my logs I’m seeing
- [info] INFO Sending signal SIGINT to main child process w/ PID 323
…30 seconds - [info] INFO Sending signal SIGTERM to main child process w/ PID 323
- [warn] Virtual machine exited abruptly
(I am trapping SIGTERM in my execution script and I guess that the actions there have not had enough time to land)
The behaviour I would have expected is
- no SIGNT
- SIGTERM
- 30 seconds
- SIGKILL
am i missing something?