From fc3cb14336f85dddf02baf5b94f33447fec21c6e Mon Sep 17 00:00:00 2001 From: roggervalf Date: Thu, 22 Aug 2024 00:09:29 -0500 Subject: [PATCH] fix(flow): remove debounce key when parent is moved to fail --- 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])