UN-2857 [MISC] Fix Redis unacked hash memory leak in log consumer worker (#1566)
Added write_only=True parameter to KombuManager in log_consumer worker to prevent accumulation of unacked messages in Redis.
This commit is contained in:
@@ -37,7 +37,7 @@ sio = socketio.Server(
|
||||
async_mode="threading",
|
||||
logger=False,
|
||||
engineio_logger=False,
|
||||
client_manager=socketio.KombuManager(url=socket_io_manager_url),
|
||||
client_manager=socketio.KombuManager(url=socket_io_manager_url, write_only=True),
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user