From a7291143768107ecc483f7112eb3bfe2af2ddf2e Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 25 Jan 2024 22:20:51 -0500 Subject: [PATCH] remove prefix from redis --- 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 b8f6b453a..8a170487f 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, prefix: '{myprefix}'} + { connection } ); workerContainer[name] = new Worker< TQueueJobTypes[T]["payload"],