mirror of https://github.com/Chocobozzz/PeerTube
Increase max stalled count in job queue
parent
14f2b3ad11
commit
4a9e71c2b1
|
@ -64,7 +64,10 @@ class JobQueue {
|
|||
this.jobRedisPrefix = 'bull-' + CONFIG.WEBSERVER.HOST
|
||||
const queueOptions = {
|
||||
prefix: this.jobRedisPrefix,
|
||||
redis: Redis.getRedisClient()
|
||||
redis: Redis.getRedisClient(),
|
||||
settings: {
|
||||
maxStalledCount: 10 // transcoding could be long, so jobs can often be interrupted by restarts
|
||||
}
|
||||
}
|
||||
|
||||
for (const handlerName of Object.keys(handlers)) {
|
||||
|
|
Loading…
Reference in New Issue