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
{{ message }}
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
the application needs to listen for termination signals such as SIGINT (which is typically sent when you use ctrl+C to stop the app locally) and SIGTERM (which is sent by Kubernetes when trying to shut down the running pod). when these signals are received, we need to stop listening for new slack messages, terminate any active connections to the database, then exit the process.
the application needs to listen for termination signals such as
SIGINT
(which is typically sent when you use ctrl+C to stop the app locally) andSIGTERM
(which is sent by Kubernetes when trying to shut down the running pod). when these signals are received, we need to stop listening for new slack messages, terminate any active connections to the database, then exit the process.references:
The text was updated successfully, but these errors were encountered: