From 18de5c65741705635bcbd1260c6820490cbd29f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Sun, 19 Oct 2025 15:39:50 +0200 Subject: [PATCH] Fix worker health check using wrong Redis connection (#15195) Health check was connecting to REDIS_URL instead of REDIS_QUEUE_URL where workers are actually running. --- .../src/engine/core-modules/health/indicators/worker.health.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/engine/core-modules/health/indicators/worker.health.ts b/packages/twenty-server/src/engine/core-modules/health/indicators/worker.health.ts index 8a5a3f5b27..a0a32cc60a 100644 --- a/packages/twenty-server/src/engine/core-modules/health/indicators/worker.health.ts +++ b/packages/twenty-server/src/engine/core-modules/health/indicators/worker.health.ts @@ -54,7 +54,7 @@ export class WorkerHealthIndicator { pointsNeeded?: number; }, ): Promise { - const redis = this.redisClient.getClient(); + const redis = this.redisClient.getQueueClient(); const queue = new Queue(queueName, { connection: redis }); try {