1 2 3 4 5 6 7 8 9 | 1× | 'use strict'; module.exports.Messages = { RETRY_JOB_NOT_EXIST: "Couldn't retry job: The job doesn't exist", RETRY_JOB_IS_LOCKED: "Couldn't retry job: The job is locked", RETRY_JOB_NOT_FAILED: "Couldn't retry job: The job has been already retried or has not failed" }; |