From 4985e09365e566338e79783f29f3f3e708e651d1 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 13 Mar 2017 18:22:58 +0900 Subject: [PATCH] Fix --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index a226fdd6c..5475099aa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -120,10 +120,12 @@ async function init() { } // Check if a port is being used + /* https://github.com/stdarg/tcp-port-used/issues/3 if (await portUsed.check(config.port)) { Logger.error(`Port ${config.port} is already used`); return InitResult.Failure; } + */ // Try to connect to MongoDB let mongoDBLogger = new Logger('MongoDB');