Commit 66ad287
committed
fix: OrderedDict has no .add(), use key assignment for delivery dedup
Commit 75a6d36 changed processed_deliveries from set to OrderedDict
for deterministic eviction, but mark_delivery_processed() still used
.add() which is a set-only method. Changed to key assignment:
processed_deliveries[delivery_id] = None
Fixes 6 failing tests in CI (AttributeError on main).1 parent c9d3167 commit 66ad287
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
0 commit comments