1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 01:39:37 +02:00

Add WatchDog for stalled Transcription jobs

This commit is contained in:
Ankit lal 2025-07-22 22:37:51 +05:30 committed by Chocobozzz
parent 37e13bbcd2
commit cdb861a26a
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 9 additions and 2 deletions

View file

@ -442,7 +442,8 @@ const CONFIG = {
REMOTE_RUNNERS: {
STALLED_JOBS: {
LIVE: parseDurationToMs(config.get<string>('remote_runners.stalled_jobs.live')),
VOD: parseDurationToMs(config.get<string>('remote_runners.stalled_jobs.vod'))
VOD: parseDurationToMs(config.get<string>('remote_runners.stalled_jobs.vod')),
TRANSCRIPTION: parseDurationToMs(config.get<string>('remote_runners.stalled_jobs.transcription'))
}
},
THUMBNAILS: {