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 () => {
|
process.on("SIGTERM", async () => {
|
||||||
console.log("Shutting down due to SIGTERM");
|
console.log("Shutting down due to SIGTERM");
|
||||||
server.close();
|
server.close();
|
||||||
|
Sentry.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
|
@ -99,4 +99,8 @@ export const Sentry = {
|
|||||||
res.end(res.sentry + "\n");
|
res.end(res.sentry + "\n");
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
close: () => {
|
||||||
|
SentryNode.close();
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user