summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue/QueueProcessorService.ts
diff options
context:
space:
mode:
authorwoxtu <woxtup@gmail.com>2024-01-28 15:08:45 +0900
committerGitHub <noreply@github.com>2024-01-28 15:08:45 +0900
commitcdac3988b546f7cf457767f30ef9e24a591ae9d7 (patch)
tree4c0889d06b7e1ef7ead450a7985735a49d5b4782 /packages/backend/src/queue/QueueProcessorService.ts
parentenhance(frontend): リモートのユーザーはメニューから直接リ... (diff)
downloadsharkey-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/QueueProcessorService.ts')
-rw-r--r--packages/backend/src/queue/QueueProcessorService.ts4
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,
},
});