mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
interface: make changing max incoming msg size (1 MB) easier
This commit is contained in:
parent
c19f9ee755
commit
787ac5fe99
1 changed files with 7 additions and 1 deletions
|
@ -36,7 +36,7 @@ import itertools
|
|||
import logging
|
||||
|
||||
import aiorpcx
|
||||
from aiorpcx import RPCSession, Notification, NetAddress
|
||||
from aiorpcx import RPCSession, Notification, NetAddress, NewlineFramer
|
||||
from aiorpcx.curio import timeout_after, TaskTimeout
|
||||
from aiorpcx.jsonrpc import JSONRPC, CodeMessageError
|
||||
from aiorpcx.rawsocket import RSClient
|
||||
|
@ -62,6 +62,8 @@ ca_path = certifi.where()
|
|||
|
||||
BUCKET_NAME_OF_ONION_SERVERS = 'onion'
|
||||
|
||||
MAX_INCOMING_MSG_SIZE = 1_000_000 # in bytes
|
||||
|
||||
|
||||
class NetworkTimeout:
|
||||
# seconds
|
||||
|
@ -157,6 +159,10 @@ class NotificationSession(RPCSession):
|
|||
if self.interface.debug or self.interface.network.debug:
|
||||
self.interface.logger.debug(msg)
|
||||
|
||||
def default_framer(self):
|
||||
# overridden so that max_size can be customized
|
||||
return NewlineFramer(max_size=MAX_INCOMING_MSG_SIZE)
|
||||
|
||||
|
||||
class NetworkException(Exception): pass
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue