Unbuffered.

This commit is contained in:
retoor 2025-01-31 12:34:06 +01:00
parent 1c53a90e00
commit 312b9eeeca

View File

@ -144,6 +144,7 @@ class RPCView(BaseView):
print("Subscribed for: ", subscription["label"],flush=True)
rpc = RPCView.RPCApi(self,ws)
async for msg in ws:
print(msg)
if msg.type == web.WSMsgType.TEXT:
await rpc(msg.json())
elif msg.type == web.WSMsgType.ERROR: