From 7912c3e50a391a7caaca5259c2eeae1df84719de Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 17 Jul 2020 22:22:04 +0200 Subject: [PATCH] api port number typo --- lib/api/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/api.js b/lib/api/api.js index c6de9cd..0c667b8 100644 --- a/lib/api/api.js +++ b/lib/api/api.js @@ -1,7 +1,7 @@ const bodyParser = require('body-parser'); const config = require('../../conf/config'); const { getLastJobExecution, getLastProviderExecution, getTotalNumberOfListings } = require('../services/store'); -const PORT = 9908; +const PORT = 9998; const service = require('restana')(); service.use(bodyParser.json());