Merge branch 'release-0.7.17'
This commit is contained in:
commit
0771221e93
@ -1,3 +1,8 @@
|
|||||||
|
version 0.7.17
|
||||||
|
--------------
|
||||||
|
|
||||||
|
- upped read buffer limit to 1000000 bytes.
|
||||||
|
|
||||||
version 0.7.16
|
version 0.7.16
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
|||||||
@ -101,7 +101,7 @@ class JSONRPC(asyncio.Protocol, LoggedClass):
|
|||||||
# 1000 are treated as 1000.
|
# 1000 are treated as 1000.
|
||||||
self.max_send = 0
|
self.max_send = 0
|
||||||
# If buffered incoming data exceeds this the connection is closed
|
# If buffered incoming data exceeds this the connection is closed
|
||||||
self.max_buffer_size = 150000
|
self.max_buffer_size = 1000000
|
||||||
self.anon_logs = False
|
self.anon_logs = False
|
||||||
|
|
||||||
def peername(self, *, for_log=True):
|
def peername(self, *, for_log=True):
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
VERSION = "ElectrumX 0.7.16"
|
VERSION = "ElectrumX 0.7.17"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user