You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try:
if unixsock:
self._sock.connect(unixsock)
else:
self._sock.connect((host, port))
except socket.error as e:
if e.errno == errno.EINPROGRESS:
gethub().do_write(self._sock) # socket is never writable, HUP received
else:
raise
The error is here: