mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 13:49:15 +01:00
SYN-338: Fix typo that caused the cache to throw an exception in some instances
This commit is contained in:
parent
532ebc4a82
commit
ccda401dbf
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class ExpiringCache(object):
|
|||
if self._max_len and len(self._cache.keys()) > self._max_len:
|
||||
sorted_entries = sorted(
|
||||
self._cache.items(),
|
||||
key=lambda k, v: v.time,
|
||||
key=lambda (k, v): v.time,
|
||||
)
|
||||
|
||||
for k, _ in sorted_entries[self._max_len:]:
|
||||
|
|
Loading…
Reference in a new issue