Skip to content

Commit

Permalink
Fix issue for paused connections
Browse files Browse the repository at this point in the history
Prepare 0.9.5
  • Loading branch information
Neil Booth committed Dec 13, 2016
1 parent ef65f9f commit ba86234
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions RELEASE-NOTES
@@ -1,3 +1,8 @@
version 0.9.5
-------------

- fix issue introduced in 0.9.4 with paused connections

version 0.9.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion server/protocol.py
Expand Up @@ -132,7 +132,7 @@ async def enqueue_delayed_sessions(self):
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:
Expand Down
2 changes: 1 addition & 1 deletion server/version.py
@@ -1 +1 @@
VERSION = "ElectrumX 0.9.4"
VERSION = "ElectrumX 0.9.5"

0 comments on commit ba86234

Please sign in to comment.