core: make protobuf buffer bigger

pull/1128/head
matejcik 4 years ago committed by Tomas Susanka
parent 0c3bc53aee
commit 01d695283f

@ -133,12 +133,14 @@ class DummyContext:
DUMMY_CONTEXT = DummyContext()
PROTOBUF_BUFFER_SIZE = 16384
class Context:
def __init__(self, iface: WireInterface, sid: int) -> None:
self.iface = iface
self.sid = sid
self.buffer_io = utils.BufferIO(bytearray(8192))
self.buffer_io = utils.BufferIO(bytearray(PROTOBUF_BUFFER_SIZE))
async def call(
self,

Loading…
Cancel
Save