1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-04-05 19:18:31 -04:00

Limit packets to 50 in PacketList

This commit is contained in:
Hemna 2024-04-12 09:01:57 -04:00
parent 026dc6e376
commit f682890ef0

View File

@ -22,7 +22,7 @@ class PacketList(objectstore.ObjectStoreMixin):
def __new__(cls, *args, **kwargs):
if cls._instance is None:
cls._instance = super().__new__(cls)
cls._maxlen = 100
cls._maxlen = 50
cls.data = {
"types": {},
"packets": OrderedDict(),