blocking/transit.py: hush a transient failure
Not entirely sure what's going on here, but this is probably safe.
This commit is contained in:
parent
ccea1a7d3c
commit
bc3b0f03b9
|
@ -387,7 +387,8 @@ class Common:
|
|||
|
||||
def _connector_failed(self, hint):
|
||||
debug("- failed connector %s" % hint)
|
||||
self._active_connectors.remove(hint)
|
||||
# XXX this was .remove, and occasionally got KeyError
|
||||
self._active_connectors.discard(hint)
|
||||
if not self._active_connectors:
|
||||
self._start_relay_connectors()
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user