1 files changed, 3 insertions, 6 deletions
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();
|