1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Reduce video import TTL

This commit is contained in:
Chocobozzz 2018-09-25 16:31:16 +02:00
parent ebdb612458
commit cfaf819c38
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 2 additions and 2 deletions

View file

@ -119,7 +119,7 @@ const JOB_TTL: { [ id in JobType ]: number } = {
'activitypub-follow': 60000 * 10, // 10 minutes
'video-file-import': 1000 * 3600, // 1 hour
'video-file': 1000 * 3600 * 48, // 2 days, transcoding could be long
'video-import': 1000 * 3600 * 5, // 5 hours
'video-import': 1000 * 3600 * 5, // 1 hour
'email': 60000 * 10, // 10 minutes
'videos-views': undefined // Unlimited
}