Fix issue for paused connections

Prepare 0.9.5
This commit is contained in:
Neil Booth 2016-12-14 00:07:26 +09:00
parent ef65f9f281
commit ba862343b4
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
version 0.9.5
-------------
- fix issue introduced in 0.9.4 with paused connections
version 0.9.4
-------------

View File

@ -132,7 +132,7 @@ class ServerManager(util.LoggedClass):
now = time.time()
keep = []
for pair in self.delayed_sessions:
timeout, session = pair
timeout, (priority, queue_id, session) = pair
if not session.pause and timeout <= now:
self.queue.put_nowait(session)
else:

View File

@ -1 +1 @@
VERSION = "ElectrumX 0.9.4"
VERSION = "ElectrumX 0.9.5"