Skip to content

Commit b48ab6b

Browse files
Exit FlowGraph is (Failure) is returned. False output was ignored
1 parent 890e4e0 commit b48ab6b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

raider/operations.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ def execute_actions(
5757
if isinstance(operations, list):
5858
for item in operations:
5959
output = item.run(pconfig, response)
60-
if output:
60+
if output or isinstance(output, bool):
6161
return output
62-
6362
return None
6463

6564

0 commit comments

Comments
 (0)