From a09030fd6d91fda669b69b9ad2642477c92a9855 Mon Sep 17 00:00:00 2001 From: Jason Rasmussen Date: Sat, 28 Jan 2023 00:12:38 -0500 Subject: [PATCH] fix(server): microservices port (#1460) --- server/apps/microservices/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/apps/microservices/src/main.ts b/server/apps/microservices/src/main.ts index f8292ce791..a236e45d24 100644 --- a/server/apps/microservices/src/main.ts +++ b/server/apps/microservices/src/main.ts @@ -12,7 +12,7 @@ async function bootstrap() { logger: getLogLevels(), }); - const listeningPort = Number(process.env.MACHINE_LEARNING_PORT) || 3002; + const listeningPort = Number(process.env.MICROSERVICES_PORT) || 3002; const redisIoAdapter = new RedisIoAdapter(app); await redisIoAdapter.connectToRedis();