- 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
23 lines
340 B
Lua
23 lines
340 B
Lua
--[[
|
|
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
|