From a30d6e54db850e72ca335f2c6d2bdec58d560fac Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Dec 2024 01:07:54 +0300 Subject: [PATCH] In MessageBus, increase history size --- avtdl/core/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avtdl/core/interfaces.py b/avtdl/core/interfaces.py index be87266..07e25fc 100644 --- a/avtdl/core/interfaces.py +++ b/avtdl/core/interfaces.py @@ -118,7 +118,7 @@ class MessageBus: PREFIX_OUT = 'output' SEPARATOR = '/' - HISTORY_SIZE = 10 + HISTORY_SIZE = 20 def __init__(self) -> None: self.subscriptions: SubscriptionsMapping = defaultdict(list)