From 1d6b213fcc8f67357ad1ce9721e6b4b985ef5104 Mon Sep 17 00:00:00 2001 From: Miguel Prieto Date: Fri, 22 Nov 2024 14:50:04 -0300 Subject: [PATCH] Add new IdempotencyStrategy `FAIL_ON_RUNNING` --- .../common/metadata/workflow/IdempotencyStrategy.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/main/java/com/netflix/conductor/common/metadata/workflow/IdempotencyStrategy.java b/common/src/main/java/com/netflix/conductor/common/metadata/workflow/IdempotencyStrategy.java index 4b9ebd60b..a1dc436ac 100644 --- a/common/src/main/java/com/netflix/conductor/common/metadata/workflow/IdempotencyStrategy.java +++ b/common/src/main/java/com/netflix/conductor/common/metadata/workflow/IdempotencyStrategy.java @@ -14,5 +14,6 @@ public enum IdempotencyStrategy { FAIL, - RETURN_EXISTING + RETURN_EXISTING, + FAIL_ON_RUNNING }