Skip to content

Instantly share code, notes, and snippets.

@slavafomin
Last active November 21, 2021 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slavafomin/1a2731137164fa2d2fb7851a9c28477a to your computer and use it in GitHub Desktop.
Save slavafomin/1a2731137164fa2d2fb7851a9c28477a to your computer and use it in GitHub Desktop.
Grammy Runner Graceful Shutdown
const runner = run(bot);
['SIGTERM', 'SIGINT'].forEach(signal =>
process.once(signal, () => runner.isRunning() && runner.stop())
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment