I am getting this today too. This code_name is not valid per the docs, but its being placed there by the gui editor behind the scence. I cannot edit the join_ function without breaking the gui restrictions and going straight code. (classic playbook) here is example: @phanTom.playbook_block()
def code_7(action=None, success=None, container=None, results=None, handle=None, filtered_artifacts=None, filtered_results=None, custom_function=None, loop_state_json=None, **kwargs):
phantom.debug("code_7() called")
################################################################################
## Custom Code Start
################################################################################
# Write your custom code here...
################################################################################
## Custom Code End
################################################################################
join_code_9(container=container)
return
@phantom.playbook_block()
def code_8(action=None, success=None, container=None, results=None, handle=None, filtered_artifacts=None, filtered_results=None, custom_function=None, loop_state_json=None, **kwargs):
phantom.debug("code_8() called")
################################################################################
## Custom Code Start
################################################################################
# Write your custom code here...
################################################################################
## Custom Code End
################################################################################
join_code_9(container=container)
return
**** This part is auto generated by the SOAR GUI editor*****
@phantom.playbook_block()
def join_code_9(action=None, success=None, container=None, results=None, handle=None, filtered_artifacts=None, filtered_results=None, custom_function=None, loop_state_json=None, **kwargs):
phantom.debug("join_code_9() called")
if phantom.completed(code_names=["code_7", "code_8"]):
# call connected block "code_9"
code_9(container=container, handle=handle)
return
... View more