From 8da334aa7716683623a9ec883c4d70690fbb742b Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 12 Jan 2022 17:11:18 +0100 Subject: [PATCH] remove process.exit since it does not have any effect --- backend/src/webhook/github.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/webhook/github.ts b/backend/src/webhook/github.ts index e96e8cf2d..31ce5ed94 100644 --- a/backend/src/webhook/github.ts +++ b/backend/src/webhook/github.ts @@ -26,7 +26,6 @@ export const githubWebhook = async (req: any, res: any): Promise => { }, ) child.unref() - process.exit() } } }