Files
boc/landvex/node_modules/bull/lib/commands/includes/removeDebounceKey.lua
T

13 lines
266 B
Lua
Raw Normal View History

--[[
Function to remove debounce key.
]]
local function removeDebounceKey(prefixKey, jobKey)
local debounceId = rcall("HGET", jobKey, "deid")
if debounceId then
local debounceKey = prefixKey .. "de:" .. debounceId
rcall("DEL", debounceKey)
end
end