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; }