remove railway dockerfile, fix debug statements

This commit is contained in:
sid palas
2023-02-03 13:00:28 -05:00
parent 9db6e0177e
commit 68e0caa95f
2 changed files with 2 additions and 31 deletions

View File

@ -21,8 +21,8 @@ const server = app.listen(port, () => {
});
process.on('SIGTERM', () => {
debug('SIGTERM signal received: closing HTTP server');
console.debug('SIGTERM signal received: closing HTTP server');
server.close(() => {
debug('HTTP server closed');
console.debug('HTTP server closed');
});
});