Increase max message size

Huge mempools on test were hitting this limit.
This commit is contained in:
Jason Rhinelander 2021-01-04 13:07:39 -04:00
parent b678445d77
commit c69390ef04
1 changed files with 1 additions and 1 deletions

2
lmq.py
View File

@ -9,7 +9,7 @@ def lmq_connection():
global lmq, lokid
if lmq is None:
lmq = pylokimq.LokiMQ(pylokimq.LogLevel.warn)
lmq.max_message_size = 10*1024*1024
lmq.max_message_size = 200*1024*1024
lmq.start()
if lokid is None:
lokid = lmq.connect_remote(config.lokid_rpc)