Skip to content

Commit 47bdea2

Browse files
committed
fix(Validation): fixed exit flow directive validation
related to #67 Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent 97b11cb commit 47bdea2

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)