mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
Remove RawConnError from exception handling
This commit is contained in:
@ -58,5 +58,5 @@ class RawConnection(IRawConnection):
|
|||||||
try:
|
try:
|
||||||
await self.writer.wait_closed()
|
await self.writer.wait_closed()
|
||||||
# In case the connection is already reset.
|
# In case the connection is already reset.
|
||||||
except (ConnectionResetError, RawConnError):
|
except ConnectionResetError:
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user