3
0

Fix gateway ref validation bug

This commit is contained in:
Denis Arh
2021-03-30 12:41:28 +02:00
parent ed5f26cd0d
commit 0e787d4772

View File

@@ -602,8 +602,7 @@ func verifyStep(s *types.WorkflowStep, in, out types.WorkflowPathSet) types.Work
case "join": case "join":
return append(checks, count(1, -1, inbound)) return append(checks, count(1, -1, inbound))
case "fork": case "fork", "incl", "excl":
case "incl", "excl":
return append(checks, count(1, -1, outbound)) return append(checks, count(1, -1, outbound))
} }