From 3ae1e7e87d31ca52d7d5c632549e9e6b9db907c5 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 21 Feb 2023 13:47:28 +0100 Subject: [PATCH] remove debug --- apps/api/src/lib/services/handlers.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/api/src/lib/services/handlers.ts b/apps/api/src/lib/services/handlers.ts index c33501535..c0f33bd02 100644 --- a/apps/api/src/lib/services/handlers.ts +++ b/apps/api/src/lib/services/handlers.ts @@ -75,7 +75,6 @@ export async function startService(request: FastifyRequest, fa } const customVolumes = await prisma.servicePersistentStorage.findMany({ where: { serviceId: id } }) let volumes = new Set() - console.log(template.services[s].volumes) if (arm && template.services[s]?.volumesArm?.length > 0) { template.services[s].volumesArm.forEach(v => volumes.add(v)) } else { @@ -83,10 +82,8 @@ export async function startService(request: FastifyRequest, fa template.services[s].volumes.forEach(v => volumes.add(v)) } } - // Workaround: old plausible analytics service wrong volume id name if (service.type === 'plausibleanalytics' && service.plausibleAnalytics?.id) { - console.log('old plausible analytics service') let temp = Array.from(volumes) temp.forEach(a => { const t = a.replace(service.id, service.plausibleAnalytics.id) @@ -103,7 +100,6 @@ export async function startService(request: FastifyRequest, fa } } } - console.log(s, Array.from(volumes)) let ports = [] if (template.services[s].proxy?.length > 0) { for (const proxy of template.services[s].proxy) {