Skip to content

Commit e31f7b4

Browse files
Merge pull request #2694 from Ayomide-Daniel/docs/queues
docs(queues): fix typos
2 parents 4565b6e + 1c5ef37 commit e31f7b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/techniques/queues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ With this in place, you can now point to this configuration in the `registerQueu
9999

100100
```typescript
101101
BullModule.registerQueue({
102-
configKey: 'alternative-queue'
102+
configKey: 'alternative-queue',
103103
name: 'video',
104104
});
105105
```
@@ -428,7 +428,7 @@ BullModule.forRootAsync({
428428
useFactory: async (configService: ConfigService) => ({
429429
redis: {
430430
host: configService.get('QUEUE_HOST'),
431-
port: +configService.get('QUEUE_PORT'),
431+
port: configService.get('QUEUE_PORT'),
432432
},
433433
}),
434434
inject: [ConfigService],

0 commit comments

Comments
 (0)