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"],