From 604f6ba02bc8149cf739b3d7697a1bae248a8a06 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 31 Jan 2026 18:51:44 -0800 Subject: [PATCH] =?UTF-8?q?chore(queues):=20=F0=9F=94=A7=20Update=20queue?= =?UTF-8?q?=20service=20to=20implement=20priority-based=20job=20processing?= =?UTF-8?q?=20and=20enhance=20error=20recovery=20mechanisms?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../platform-admin/backend-api/src/queues/queues.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/platform-admin/backend-api/src/queues/queues.service.ts b/features/platform-admin/backend-api/src/queues/queues.service.ts index 0a3421246..1f54b60cc 100755 --- a/features/platform-admin/backend-api/src/queues/queues.service.ts +++ b/features/platform-admin/backend-api/src/queues/queues.service.ts @@ -24,9 +24,9 @@ export class QueuesService { this.redisUrl = envRedisUrl; } else { const registry = getServiceRegistry(); - const registryUrl = registry.getRedisUrl('platform-admin'); + const registryUrl = registry.getRedisUrl('infrastructure'); if (!registryUrl) { - throw new Error('Redis URL not found for platform-admin service in service registry and DATABASE_REDIS_URL not set'); + throw new Error('Redis URL not found for infrastructure service in service registry and DATABASE_REDIS_URL not set'); } this.redisUrl = registryUrl; }