add temporary fix for message["type"]
This commit is contained in:
parent
df57570852
commit
4de1a3afd9
1 changed files with 5 additions and 0 deletions
|
|
@ -31,6 +31,11 @@ class ResultData(BaseModel):
|
|||
if not values.get("logs") and values.get("artifacts"):
|
||||
# Build the log from the artifacts
|
||||
message = values["artifacts"]
|
||||
|
||||
# ! Temporary fix
|
||||
if not isinstance(message, dict):
|
||||
message = {"message": message}
|
||||
|
||||
if "stream_url" in message and "type" in message:
|
||||
stream_url = StreamURL(location=message["stream_url"])
|
||||
values["logs"] = [Log(message=stream_url, type=message["type"])]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue