diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-15 15:31:08 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-15 15:31:08 +0200 |
commit | 60520c7c852b7430e09cdc68ac7ccfe506cbf417 (patch) | |
tree | 0b4445703a989498c91f9a16c6b5362925cd36aa /server | |
parent | 799ece6aae8ef55b50b6193de3c4d46e7bb258f5 (diff) | |
download | PeerTube-60520c7c852b7430e09cdc68ac7ccfe506cbf417.tar.gz PeerTube-60520c7c852b7430e09cdc68ac7ccfe506cbf417.tar.zst PeerTube-60520c7c852b7430e09cdc68ac7ccfe506cbf417.zip |
Increase fetcher jobs concurrency
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index d41d0e056..06b4e5a18 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -152,7 +152,7 @@ const JOB_ATTEMPTS: { [id in JobType]: number } = { | |||
152 | const JOB_CONCURRENCY: { [id in Exclude<JobType, 'video-transcoding' | 'video-import'>]: number } = { | 152 | const JOB_CONCURRENCY: { [id in Exclude<JobType, 'video-transcoding' | 'video-import'>]: number } = { |
153 | 'activitypub-http-broadcast': 1, | 153 | 'activitypub-http-broadcast': 1, |
154 | 'activitypub-http-unicast': 5, | 154 | 'activitypub-http-unicast': 5, |
155 | 'activitypub-http-fetcher': 1, | 155 | 'activitypub-http-fetcher': 3, |
156 | 'activitypub-cleaner': 1, | 156 | 'activitypub-cleaner': 1, |
157 | 'activitypub-follow': 1, | 157 | 'activitypub-follow': 1, |
158 | 'video-file-import': 1, | 158 | 'video-file-import': 1, |