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