From 27dfa24cfb5b356a4c774ce09b8de382480a7b2e Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 25 Aug 2022 10:29:08 +0200 Subject: [PATCH] remove debug --- apps/api/src/jobs/checkProxies.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/api/src/jobs/checkProxies.ts b/apps/api/src/jobs/checkProxies.ts index b493d7b83..a394fc304 100644 --- a/apps/api/src/jobs/checkProxies.ts +++ b/apps/api/src/jobs/checkProxies.ts @@ -23,7 +23,6 @@ import { checkContainer } from '../lib/docker'; }) } portReachable = await isReachable(80, { host: 'localhost' }) - console.log({ port: 80, portReachable }) if (!portReachable) { await startTraefikProxy(localDocker.id); } @@ -49,7 +48,6 @@ import { checkContainer } from '../lib/docker'; }) } portReachable = await isReachable(publicPort, { host: destinationDocker.remoteIpAddress || 'localhost' }) - console.log({ publicPort, portReachable }) if (!portReachable) { await startTraefikTCPProxy(destinationDocker, id, publicPort, privatePort); } @@ -72,7 +70,6 @@ import { checkContainer } from '../lib/docker'; }) } portReachable = await isReachable(ftpPublicPort, { host: destinationDocker.remoteIpAddress || 'localhost' }) - console.log({ ftpPublicPort, portReachable }) if (!portReachable) { await startTraefikTCPProxy(destinationDocker, id, ftpPublicPort, 22, 'wordpressftp'); } @@ -97,7 +94,6 @@ import { checkContainer } from '../lib/docker'; }) } portReachable = await isReachable(publicPort, { host: destinationDocker.remoteIpAddress || 'localhost' }) - console.log({ publicPort, portReachable }) if (!portReachable) { await startTraefikTCPProxy(destinationDocker, id, publicPort, 9000); }