- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.reprocessJob = void 0;
|
|
const content = `--[[
|
|
Attempts to reprocess a job
|
|
Input:
|
|
KEYS[1] job key
|
|
KEYS[2] events stream
|
|
KEYS[3] job state
|
|
KEYS[4] wait key
|
|
KEYS[5] meta
|
|
KEYS[6] paused key
|
|
ARGV[1] job.id
|
|
ARGV[2] (job.opts.lifo ? 'R' : 'L') + 'PUSH'
|
|
ARGV[3] propVal - failedReason/returnvalue
|
|
ARGV[4] prev state - failed/completed
|
|
Output:
|
|
1 means the operation was a success
|
|
-1 means the job does not exist
|
|
-3 means the job was not found in the expected set.
|
|
]]
|
|
local rcall = redis.call;
|
|
-- Includes
|
|
--[[
|
|
Function to check for the meta.paused key to decide if we are paused or not
|
|
(since an empty list and !EXISTS are not really the same).
|
|
]]
|
|
local function getTargetQueueList(queueMetaKey, waitKey, pausedKey)
|
|
if rcall("HEXISTS", queueMetaKey, "paused") ~= 1 then
|
|
return waitKey, false
|
|
else
|
|
return pausedKey, true
|
|
end
|
|
end
|
|
if (rcall("EXISTS", KEYS[1]) == 1) then
|
|
local jobId = ARGV[1]
|
|
if (rcall("ZREM", KEYS[3], jobId) == 1) then
|
|
rcall("HDEL", KEYS[1], "finishedOn", "processedOn", ARGV[3])
|
|
local target = getTargetQueueList(KEYS[5], KEYS[4], KEYS[6])
|
|
rcall(ARGV[2], target, jobId)
|
|
-- Emit waiting event
|
|
rcall("XADD", KEYS[2], "*", "event", "waiting", "jobId", jobId, "prev", ARGV[4]);
|
|
return 1
|
|
else
|
|
return -3
|
|
end
|
|
else
|
|
return -1
|
|
end
|
|
`;
|
|
exports.reprocessJob = {
|
|
name: 'reprocessJob',
|
|
content,
|
|
keys: 6,
|
|
};
|
|
//# sourceMappingURL=reprocessJob-6.js.map
|