Projektstart
This commit is contained in:
19
backend/node_modules/bullmq/dist/esm/commands/saveStacktrace-1.lua
generated
vendored
Normal file
19
backend/node_modules/bullmq/dist/esm/commands/saveStacktrace-1.lua
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
Save stacktrace and failedReason.
|
||||
Input:
|
||||
KEYS[1] job key
|
||||
ARGV[1] stacktrace
|
||||
ARGV[2] failedReason
|
||||
Output:
|
||||
0 - OK
|
||||
-1 - Missing key
|
||||
]]
|
||||
local rcall = redis.call
|
||||
|
||||
if rcall("EXISTS", KEYS[1]) == 1 then
|
||||
rcall("HMSET", KEYS[1], "stacktrace", ARGV[1], "failedReason", ARGV[2])
|
||||
|
||||
return 0
|
||||
else
|
||||
return -1
|
||||
end
|
||||
Reference in New Issue
Block a user