Redis Cluster, Can't add the job to the failed queue
In the environment of Redis cluster,Can't add the job to the failed queue,Job will hold the lock for a long time until the Job times out!
Description
queue.process('testjob', async (job,done) => {
done(new Error('error transcoding'))
//OR
throw new Error('error transcoding')
//Can't add the job to the failed queue
})