You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: