Alexandr Zarubkin

Results 74 comments of Alexandr Zarubkin

> @me21 You have me thinking though. If there's a chance that a message could fail to be delivered, but the connection could recover without a subsequent reconnection. Then acknowledging...

According to the engineio sources, `AsyncSocket` class raises an exception if it receives too much data: ```python async def _websocket_handler(self, ws): """Engine.IO handler for websocket transport.""" async def websocket_wait(): data...

How about `core.sio = sio = socketio.AsyncServer(async_mode='asgi', cors_allowed_origins='*', json=json, max_http_buffer_size=float('inf'))`? Would it break something?

Newer CPython issue link (after migration to GitHub): https://github.com/python/cpython/issues/75720