fix: remove random sleep before rpc call in websocket message handler

This commit is contained in:
2025-08-01 00:06:20 +00:00
parent dbc34cebb1
commit 01a14370c9
-1
View File
@@ -636,7 +636,6 @@ class RPCView(BaseView):
async for msg in ws:
if msg.type == web.WSMsgType.TEXT:
try:
await asyncio.sleep(random.uniform(0.01,0.1))
await rpc(msg.json())
except Exception as ex:
print("Deleting socket", ex, flush=True)