summaryrefslogtreecommitdiff
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
parentenhance(frontend): リモートのユーザーはメニューから直接リ... (diff)
downloadmisskey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.tar.gz
misskey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.tar.bz2
misskey-cdac3988b546f7cf457767f30ef9e24a591ae9d7.zip
fix(backend): Fix typos in job configurations (#13086)
* Fix typos * Update CHANGELOG
-rw-r--r--.config/example.yml6
-rw-r--r--CHANGELOG.md1
-rw-r--r--packages/backend/src/config.ts12
-rw-r--r--packages/backend/src/queue/QueueProcessorService.ts4
4 files changed, 12 insertions, 11 deletions
diff --git a/.config/example.yml b/.config/example.yml
index df423c2c83..3c9c3bc0d7 100644
--- a/.config/example.yml
+++ b/.config/example.yml
@@ -160,14 +160,14 @@ id: 'aidx'
# Job concurrency per worker
#deliverJobConcurrency: 128
#inboxJobConcurrency: 16
-#relashionshipJobConcurrency: 16
-# What's relashionshipJob?:
+#relationshipJobConcurrency: 16
+# What's relationshipJob?:
# Follow, unfollow, block and unblock(ings) while following-imports, etc. or account migrations.
# Job rate limiter
#deliverJobPerSec: 128
#inboxJobPerSec: 32
-#relashionshipJobPerSec: 64
+#relationshipJobPerSec: 64
# Job attempts
#deliverJobMaxAttempts: 12
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7edc9cf7cb..98d99b7af0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -63,6 +63,7 @@
- Fix: `notes/create`で、`text`が空白文字のみで構成されていてかつリノート、ファイルまたは投票を含んでいるリクエストに対するレスポンスの`text`が`""`から`null`になるように変更
- Fix: ipv4とipv6の両方が利用可能な環境でallowedPrivateNetworksが設定されていた場合プライベートipの検証ができていなかった問題を修正
- Fix: properly handle cc followers
+- Fix: ジョブに関する設定の名前を修正
### Service Worker
- Enhance: オフライン表示のデザインを改善・多言語対応
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts
index b25554b229..d433ce0eec 100644
--- a/packages/backend/src/config.ts
+++ b/packages/backend/src/config.ts
@@ -74,10 +74,10 @@ type Source = {
deliverJobConcurrency?: number;
inboxJobConcurrency?: number;
- relashionshipJobConcurrency?: number;
+ relationshipJobConcurrency?: number;
deliverJobPerSec?: number;
inboxJobPerSec?: number;
- relashionshipJobPerSec?: number;
+ relationshipJobPerSec?: number;
deliverJobMaxAttempts?: number;
inboxJobMaxAttempts?: number;
@@ -135,10 +135,10 @@ export type Config = {
outgoingAddressFamily: 'ipv4' | 'ipv6' | 'dual' | undefined;
deliverJobConcurrency: number | undefined;
inboxJobConcurrency: number | undefined;
- relashionshipJobConcurrency: number | undefined;
+ relationshipJobConcurrency: number | undefined;
deliverJobPerSec: number | undefined;
inboxJobPerSec: number | undefined;
- relashionshipJobPerSec: number | undefined;
+ relationshipJobPerSec: number | undefined;
deliverJobMaxAttempts: number | undefined;
inboxJobMaxAttempts: number | undefined;
proxyRemoteFiles: boolean | undefined;
@@ -241,10 +241,10 @@ export function loadConfig(): Config {
outgoingAddressFamily: config.outgoingAddressFamily,
deliverJobConcurrency: config.deliverJobConcurrency,
inboxJobConcurrency: config.inboxJobConcurrency,
- relashionshipJobConcurrency: config.relashionshipJobConcurrency,
+ relationshipJobConcurrency: config.relationshipJobConcurrency,
deliverJobPerSec: config.deliverJobPerSec,
inboxJobPerSec: config.inboxJobPerSec,
- relashionshipJobPerSec: config.relashionshipJobPerSec,
+ relationshipJobPerSec: config.relationshipJobPerSec,
deliverJobMaxAttempts: config.deliverJobMaxAttempts,
inboxJobMaxAttempts: config.inboxJobMaxAttempts,
proxyRemoteFiles: config.proxyRemoteFiles,
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,
},
});