Fix issue for paused connections
Prepare 0.9.5
This commit is contained in:
parent
ef65f9f281
commit
ba862343b4
@ -1,3 +1,8 @@
|
||||
version 0.9.5
|
||||
-------------
|
||||
|
||||
- fix issue introduced in 0.9.4 with paused connections
|
||||
|
||||
version 0.9.4
|
||||
-------------
|
||||
|
||||
|
||||
@ -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:
|
||||
|
||||
@ -1 +1 @@
|
||||
VERSION = "ElectrumX 0.9.4"
|
||||
VERSION = "ElectrumX 0.9.5"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user