From 88debb9729a9d54ac5b3e38d286827c599c604a4 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Wed, 25 Dec 2024 16:21:07 -0500 Subject: [PATCH] Fix SEEN_AGGREGATE_REPORT_IDS --- parsedmarc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsedmarc/cli.py b/parsedmarc/cli.py index c5a7f439..cb1dcd7d 100644 --- a/parsedmarc/cli.py +++ b/parsedmarc/cli.py @@ -56,7 +56,7 @@ handler.setFormatter(formatter) logger.addHandler(handler) -SEEN_AGGREGATE_REPORT_IDS = ExpiringDict(max_age_seconds=3600) +SEEN_AGGREGATE_REPORT_IDS = ExpiringDict(max_len=None, max_age_seconds=3600) def _str_to_list(s):