refactor: Handle different types of component_instance status in schema.py
This commit is contained in:
parent
fc2f721312
commit
db67e72755
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ def build_logs(vertex, result) -> dict:
|
|||
output_result = payload.get(output["name"])
|
||||
else:
|
||||
payload = component_instance._artifacts
|
||||
output_result = payload.get(output["name"]).get("raw")
|
||||
output_result = payload.get(output["name"], {}).get("raw")
|
||||
message = get_message(output_result)
|
||||
_type = get_type(output_result)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue