You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is more of a question than a bug report, as I don't know if it's actually a problem.
In JSONResultsReader, the code that handles messages looks like this:
if "messages" in parsed_line and parsed_line["messages"].__len__() > 0:
for message in parsed_line["messages"]:
msg_type = message.get("type", "Unknown Message Type")
text = message.get("text")
yield Message(msg_type, text)
Will there never be more than 1 message in messages? And if it is, it should probably be a comment to explain that. It's a bit weird to only return the last message without explaining why.
The text was updated successfully, but these errors were encountered:
Hi @bendikro Sorry for the delay in response.
Thanks for bringing this to our notice.
We are looking into this and will revert back with an update soon.
This is more of a question than a bug report, as I don't know if it's actually a problem.
In JSONResultsReader, the code that handles messages looks like this:
Will there never be more than 1 message in
messages
? And if it is, it should probably be a comment to explain that. It's a bit weird to only return the last message without explaining why.The text was updated successfully, but these errors were encountered: