Increase fetcher job ttl
This commit is contained in:
parent
b7e2168115
commit
d694b19344
|
@ -145,11 +145,11 @@ const JOB_CONCURRENCY: { [id in JobType]: number } = {
|
||||||
const JOB_TTL: { [id in JobType]: number } = {
|
const JOB_TTL: { [id in JobType]: number } = {
|
||||||
'activitypub-http-broadcast': 60000 * 10, // 10 minutes
|
'activitypub-http-broadcast': 60000 * 10, // 10 minutes
|
||||||
'activitypub-http-unicast': 60000 * 10, // 10 minutes
|
'activitypub-http-unicast': 60000 * 10, // 10 minutes
|
||||||
'activitypub-http-fetcher': 60000 * 10, // 10 minutes
|
'activitypub-http-fetcher': 1000 * 3600 * 10, // 10 hours
|
||||||
'activitypub-follow': 60000 * 10, // 10 minutes
|
'activitypub-follow': 60000 * 10, // 10 minutes
|
||||||
'video-file-import': 1000 * 3600, // 1 hour
|
'video-file-import': 1000 * 3600, // 1 hour
|
||||||
'video-transcoding': 1000 * 3600 * 48, // 2 days, transcoding could be long
|
'video-transcoding': 1000 * 3600 * 48, // 2 days, transcoding could be long
|
||||||
'video-import': 1000 * 3600 * 2, // hours
|
'video-import': 1000 * 3600 * 2, // 2 hours
|
||||||
'email': 60000 * 10, // 10 minutes
|
'email': 60000 * 10, // 10 minutes
|
||||||
'videos-views': undefined, // Unlimited
|
'videos-views': undefined, // Unlimited
|
||||||
'activitypub-refresher': 60000 * 10, // 10 minutes
|
'activitypub-refresher': 60000 * 10, // 10 minutes
|
||||||
|
|
Loading…
Reference in New Issue