mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-05 18:32:33 +01:00
Add sentry close to sigterm handler
This commit is contained in:
parent
d151283b08
commit
8a31d66742
@ -22,6 +22,7 @@ const gateway = new Gateway.Server({ server, port, production });
|
||||
process.on("SIGTERM", async () => {
|
||||
console.log("Shutting down due to SIGTERM");
|
||||
server.close();
|
||||
Sentry.close();
|
||||
});
|
||||
|
||||
async function main() {
|
||||
|
@ -99,4 +99,8 @@ export const Sentry = {
|
||||
res.end(res.sentry + "\n");
|
||||
});
|
||||
},
|
||||
|
||||
close: () => {
|
||||
SentryNode.close();
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user