print(f"Got a connection with UNQUOTED name="{report_name}".")
// Establishe the websocket.
ws = web.WebSocketResponse()
await ws.prepare(request)
// Instantiate a new queue and stream data into it.
connection = None
After Change
// Instantiate a new queue and stream data into it.
try:
// Establishe the websocket.
ws = web.WebSocketResponse()
await ws.prepare(request)
async for msg in streamlit_msg_iter(ws):
msg_type = msg.WhichOneof("type")