From 9e6fe61177dabba43846ee09a977b796bfd1f841 Mon Sep 17 00:00:00 2001 From: alexeh Date: Mon, 16 Jan 2023 14:25:42 +0300 Subject: [PATCH] Fix healthcheck redis conf --- api/src/health.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/health.controller.ts b/api/src/health.controller.ts index 8817873a5c..7d8688dba0 100644 --- a/api/src/health.controller.ts +++ b/api/src/health.controller.ts @@ -28,7 +28,7 @@ export class HealthController { this.microservice.pingCheck('redis', { transport: Transport.REDIS, options: { - host: `redis://${queueConfig.host}`, + host: `${queueConfig.host}`, //:${parseInt(queueConfig.port)}`, port: parseInt(`${queueConfig.port}`), }, }),