Skip to content

Commit

Permalink
bugfix: 修复job失败时提取变量取不到step_ip_result_list的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshuaikang committed Aug 8, 2023
1 parent fb26f86 commit 09cd2f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def get_job_tagged_ip_dict_complex(

step_instance = result["data"]["step_instance_list"][-1]

step_ip_result_list = step_instance["step_ip_result_list"]
step_ip_result_list = step_instance.get("step_ip_result_list", [])

success_tags_dict = {}
success_ips = []
Expand Down

0 comments on commit 09cd2f7

Please sign in to comment.