Skip to content

Commit 00d6660

Browse files
authored
Merge pull request #68 from neuroglia-io/fix-67-exit-flow-directive-validation
fix(Validation): fixed `exit` flow directive validation
2 parents 97b11cb + 47bdea2 commit 00d6660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/ServerlessWorkflow.Sdk/Validation/SwitchCaseDefinitionValidator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected virtual bool NotAFlowDirective(MapEntry<string, SwitchCaseDefinition>
6868
{
6969
return @case.Value.Then switch
7070
{
71-
null or "" or FlowDirective.Continue or FlowDirective.End or FlowDirective.End => false,
71+
null or "" or FlowDirective.Continue or FlowDirective.End or FlowDirective.Exit => false,
7272
_ => true
7373
};
7474
}

0 commit comments

Comments
 (0)