diff options
| author | woxtu <woxtup@gmail.com> | 2024-01-28 15:08:45 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-28 15:08:45 +0900 |
| commit | cdac3988b546f7cf457767f30ef9e24a591ae9d7 (patch) | |
| tree | 4c0889d06b7e1ef7ead450a7985735a49d5b4782 /packages/backend/src/queue | |
| parent | enhance(frontend): リモートのユーザーはメニューから直接リ... (diff) | |
| download | sharkey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.tar.gz sharkey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.tar.bz2 sharkey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.zip | |
fix(backend): Fix typos in job configurations (#13086)
* Fix typos
* Update CHANGELOG
Diffstat (limited to 'packages/backend/src/queue')
| -rw-r--r-- | packages/backend/src/queue/QueueProcessorService.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/queue/QueueProcessorService.ts b/packages/backend/src/queue/QueueProcessorService.ts index bcc1a69f80..cc64c9f5a3 100644 --- a/packages/backend/src/queue/QueueProcessorService.ts +++ b/packages/backend/src/queue/QueueProcessorService.ts @@ -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, }, }); |