From 88ef6496a2d27fd12222520685fe4b397bfcfc57 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 15 Feb 2022 08:50:02 +0100 Subject: [PATCH] fix: Coolify proxy start --- src/routes/destinations/[id]/start.json.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/destinations/[id]/start.json.ts b/src/routes/destinations/[id]/start.json.ts index 0d52bdb34..f5272418a 100644 --- a/src/routes/destinations/[id]/start.json.ts +++ b/src/routes/destinations/[id]/start.json.ts @@ -15,8 +15,7 @@ export const post: RequestHandler = async (event) => { status: 200 }; } catch (error) { - return ErrorHandler(error); - } finally { await stopCoolifyProxy(engine); + return ErrorHandler(error); } };