From ed3db731c2bf397b7e7a2941ec284f463463b528 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 10 Dec 2016 17:57:01 +0900 Subject: [PATCH] Prepare 0.8.12 --- RELEASE-NOTES | 7 +++++++ server/protocol.py | 1 - server/version.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 180d6c9..14e6800 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 -------------- diff --git a/server/protocol.py b/server/protocol.py index 12945e0..961cf42 100644 --- a/server/protocol.py +++ b/server/protocol.py @@ -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] diff --git a/server/version.py b/server/version.py index 654374a..d0ad607 100644 --- a/server/version.py +++ b/server/version.py @@ -1 +1 @@ -VERSION = "ElectrumX 0.8.11" +VERSION = "ElectrumX 0.8.12"