Prepare 0.8.12

This commit is contained in:
Neil Booth 2016-12-10 17:57:01 +09:00
parent 263e88ad57
commit ed3db731c2
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,10 @@
version 0.8.12
--------------
- pause serving sessions whose send buffers are full (anti-DoS). This
is currently logged; let me know if it's too verbose
- various tweaks to request handling
version 0.8.11
--------------

View File

@ -765,7 +765,6 @@ class Session(JSONRPC):
if total >= 8:
break
self.log_info('done {:,d} items'.format(total))
# Remove completed requests and re-enqueue ourself if any remain.
self.requests = [req for req in self.requests
if req.remaining and not req in errs]

View File

@ -1 +1 @@
VERSION = "ElectrumX 0.8.11"
VERSION = "ElectrumX 0.8.12"