Skip to content

Commit

Permalink
Fix SEEN_AGGREGATE_REPORT_IDS
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Dec 25, 2024
1 parent a8a5564 commit 88debb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsedmarc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 88debb9

Please sign in to comment.