mirror of
https://github.com/alexbers/mtprotoproxy.git
synced 2026-03-14 07:13:09 +00:00
handle broken pipe error
This commit is contained in:
@@ -1674,7 +1674,7 @@ async def handle_client_wrapper(reader, writer):
|
||||
await handle_client(reader, writer)
|
||||
except (asyncio.IncompleteReadError, asyncio.CancelledError):
|
||||
pass
|
||||
except (ConnectionResetError, TimeoutError):
|
||||
except (ConnectionResetError, TimeoutError, BrokenPipeError):
|
||||
pass
|
||||
except Exception:
|
||||
traceback.print_exc()
|
||||
|
||||
Reference in New Issue
Block a user