From 0571fe7d746327c1c00d02850924dbeec0e26229 Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Sat, 23 Oct 2021 03:21:55 +0530 Subject: fix: correct the import of API_VERSION (#2112) --- src/internal-server/app/Controllers/Http/ServiceController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/internal-server/app/Controllers/Http/ServiceController.js') diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js index dedb5a12b..c4ca5a113 100644 --- a/src/internal-server/app/Controllers/Http/ServiceController.js +++ b/src/internal-server/app/Controllers/Http/ServiceController.js @@ -6,7 +6,7 @@ const { v4: uuid } = require('uuid'); const path = require('path'); const fs = require('fs-extra'); const { LOCAL_HOSTNAME, DEFAULT_SERVICE_ORDER } = require('../../../../config'); -const { API_VERSION } = require('../../../../environment'); +const { API_VERSION } = require('../../../../environment-remote'); const hostname = LOCAL_HOSTNAME; const port = Env.get('PORT'); -- cgit v1.2.3-54-g00ecf