Skip to content

Commit

Permalink
protocol/sync_struct: Windows also raises ConnectionAbortedError on d…
Browse files Browse the repository at this point in the history
…isconnection
sbourdeauducq committed Jan 27, 2016
1 parent cfa4f79 commit a4fb8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/protocols/sync_struct.py
Original file line number Diff line number Diff line change
@@ -235,7 +235,7 @@ async def _handle_connection_cr(self, reader, writer):
await writer.drain()
finally:
self._recipients[notifier_name].remove(queue)
except (ConnectionResetError, BrokenPipeError):
except (ConnectionResetError, ConnectionAbortedError, BrokenPipeError):
# subscribers disconnecting are a normal occurence
pass
finally:

0 comments on commit a4fb8f3

Please sign in to comment.