issue #156: ensure Latch state is cleaned up if select throws.

This commit is contained in:
David Wilson 2018-03-21 09:22:29 +05:45
parent 20f5d89dfa
commit 7ec02f9bb0
1 changed files with 7 additions and 1 deletions

View File

@ -953,7 +953,11 @@ class Latch(object):
self._lock.release()
_vv and IOLOG.debug('%r.get() -> sleeping', self)
restart(select.select, [_tls.rsock], [], [], timeout)
e = None
try:
restart(select.select, [_tls.rsock], [], [], timeout)
except Exception, e:
pass
self._lock.acquire()
try:
@ -964,6 +968,8 @@ class Latch(object):
raise TimeoutError()
if _tls.rsock.recv(2) != '\x7f':
raise LatchError('internal error: received >1 wakeups')
if e:
raise e
if self.closed:
raise LatchError()
_vv and IOLOG.debug('%r.get() wake -> %r', self, self._queue[i])