Skip to content

Commit 194d181

Browse files
authored
Merge pull request #316 from conductor-oss/feature/idempotency-strategy-fail-on-running
Add new Idempotency Strategy `FAIL_ON_RUNNING`
2 parents 391fa43 + 1d6b213 commit 194d181

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common/src/main/java/com/netflix/conductor/common/metadata/workflow/IdempotencyStrategy.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414

1515
public enum IdempotencyStrategy {
1616
FAIL,
17-
RETURN_EXISTING
17+
RETURN_EXISTING,
18+
FAIL_ON_RUNNING
1819
}

0 commit comments

Comments
 (0)