seed icon indicating copy to clipboard operation
seed copied to clipboard

feat(back-api-core): clean up resources on shutdown

Open spy4x opened this issue 1 year ago • 0 comments

https://cloud.google.com/blog/topics/developers-practitioners/graceful-shutdowns-cloud-run-deep-dive

process.on('SIGTERM', () => {
  console.log(`${pkg.name}: received SIGTERM`);
  redisClient.quit();
  prisma.quit()
  process.exit(0);
});

spy4x avatar Nov 30 '22 12:11 spy4x