1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-09-02 21:27:56 -04:00

set packetlist max back to 100

This commit is contained in:
Hemna 2024-04-12 17:17:53 -04:00
parent 91ba6d10ce
commit 3bd7adda44

View File

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