From 4ef824f66528ed9403778f4438adb5daae41a51b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 17 Feb 2023 14:16:12 +0100 Subject: [PATCH] typo fix --- apps/api/src/lib/services/handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/lib/services/handlers.ts b/apps/api/src/lib/services/handlers.ts index c62ec693a..54d0311af 100644 --- a/apps/api/src/lib/services/handlers.ts +++ b/apps/api/src/lib/services/handlers.ts @@ -40,7 +40,7 @@ export async function startService(request: FastifyRequest, fa const { id } = request.params; const teamId = request.user.teamId; const service = await getServiceFromDB({ id, teamId }); - const arm = isARM(service.arch); + const arm = isARM(process.arch); const { type, destinationDockerId, destinationDocker, persistentStorage, exposePort } = service;