From 48e114945e1b9d26edfeae8c49b19beed2dcd73b Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Wed, 26 Oct 2022 19:50:51 +1100 Subject: Make /stop route not ugly as hell --- src/bundle/Server.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/bundle/Server.ts') diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts index dd75e777..b98a3776 100644 --- a/src/bundle/Server.ts +++ b/src/bundle/Server.ts @@ -21,13 +21,10 @@ const api = new Api.FosscordServer({ server, port, production, app }); const cdn = new CDNServer({ server, port, production, app }); const gateway = new Gateway.Server({ server, port, production }); -//this is what has been added for the /stop API route -process.on("SIGTERM", () => { - server.close(() => { - console.log("Stop API has been successfully POSTed, SIGTERM sent"); - }); +process.on("SIGTERM", async () => { + console.log("Shutting down due to SIGTERM"); + server.close(); }); -//this is what has been added for the /stop API route async function main() { await initDatabase(); -- cgit 1.4.1