fix(backend): Fix typos in job configurations (#13086)

* Fix typos

* Update CHANGELOG
This commit is contained in:
woxtu
2024-01-28 15:08:45 +09:00
committed by GitHub
parent 9753cce4aa
commit cdac3988b5
4 changed files with 12 additions and 11 deletions

View File

@@ -283,9 +283,9 @@ export class QueueProcessorService implements OnApplicationShutdown {
}, {
...baseQueueOptions(this.config, QUEUE.RELATIONSHIP),
autorun: false,
concurrency: this.config.relashionshipJobConcurrency ?? 16,
concurrency: this.config.relationshipJobConcurrency ?? 16,
limiter: {
max: this.config.relashionshipJobPerSec ?? 64,
max: this.config.relationshipJobPerSec ?? 64,
duration: 1000,
},
});