From 9a4f2947496abc4037687869c8acee07b0660d17 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 25 Jan 2024 14:41:50 -0500 Subject: [PATCH] add prefix to queue --- backend-pg/src/queue/queue-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend-pg/src/queue/queue-service.ts b/backend-pg/src/queue/queue-service.ts index 8a170487f..b8f6b453a 100644 --- a/backend-pg/src/queue/queue-service.ts +++ b/backend-pg/src/queue/queue-service.ts @@ -84,7 +84,7 @@ export const queueServiceFactory = (redisUrl: string) => { queueContainer[name] = new Queue( name as string, - { connection } + { connection, prefix: '{myprefix}'} ); workerContainer[name] = new Worker< TQueueJobTypes[T]["payload"],