-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
This issue tracks the development of signal handlers for gpcheckintegrity. The program should handle signals gracefully. At the moment, it prints the stack trace and exits, which is not very user friendly.
The main handlers should be:
- SIGTERM should stop things gracefully and close connections, then do a clean exit.
- SIGINT should stop things gracefully, close connections and ignore subsequent signals of this kinds (use case of ctrl-c storm)
- Other signals like SIGQUIT and SIGABRT should behave the same as point 1
Reactions are currently unavailable