Skip to content

Commit

Permalink
feat: Updated server/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 15, 2024
1 parent cb42693 commit 20b7543
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ const getListeningAddresses = () => {

bootstrapServer(env).then(({ httpServer }) => {
httpServer.on('error', (err) => {
console.error('Server startup error:', err);
console.error('Server startup error:', err.message);
process.exitCode = 1;
process.exitCode = 1;
process.exitCode = 1;
process.exit(1);
Expand Down

0 comments on commit 20b7543

Please sign in to comment.