From 4e760d212fb97cf4f2664843606a7f3a53fdd598 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 8817873a5..2b0f8d735 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}`, port: parseInt(`${queueConfig.port}`), }, }),