From d51aabe999a489c285f871d21e36c3c84e2bef33 Mon Sep 17 00:00:00 2001 From: Rogger Valverde Date: Wed, 21 Aug 2024 23:16:11 -0600 Subject: [PATCH] fix(flow): remove debounce key when parent is moved to fail (#2720) --- src/commands/includes/moveParentFromWaitingChildrenToFailed.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/includes/moveParentFromWaitingChildrenToFailed.lua b/src/commands/includes/moveParentFromWaitingChildrenToFailed.lua index c8e0597b92..6a6b63fbfe 100644 --- a/src/commands/includes/moveParentFromWaitingChildrenToFailed.lua +++ b/src/commands/includes/moveParentFromWaitingChildrenToFailed.lua @@ -16,7 +16,7 @@ local function moveParentFromWaitingChildrenToFailed( parentQueueKey, parentKey, local jobAttributes = rcall("HMGET", parentKey, "parent", "deid") - removeDebounceKeyIfNeeded(parentQueueKey, jobAttributes[2]) + removeDebounceKeyIfNeeded(parentQueueKey .. ":", jobAttributes[2]) if jobAttributes[1] then local parentData = cjson.decode(jobAttributes[1])