Skip to content

Commit f887607

Browse files
committed
fix init call
1 parent 9295372 commit f887607

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

services/libs/queue/src/queue.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ export abstract class QueueBase extends LoggerBase {
5656
}
5757

5858
public async init() {
59-
const url = await this.queue.init({ name: `${this.queueConf.name}${this.getQueueSuffix()}` })
59+
const url = await this.queue.init({
60+
...this.queueConf,
61+
name: `${this.queueConf.name}${this.getQueueSuffix()}`,
62+
})
6063
this.channelUrl = url
6164
}
6265
}

0 commit comments

Comments
 (0)