mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #2268 from matrix-org/erikj/entity_has_changed
Fix has_any_entity_changed
This commit is contained in:
commit
1e9b4d5a95
@ -96,10 +96,10 @@ class StreamChangeCache(object):
|
||||
|
||||
if stream_pos >= self._earliest_known_stream_pos:
|
||||
self.metrics.inc_hits()
|
||||
if stream_pos >= max(self._cache):
|
||||
return False
|
||||
else:
|
||||
return True
|
||||
keys = self._cache.keys()
|
||||
i = keys.bisect_right(stream_pos)
|
||||
|
||||
return i < len(keys)
|
||||
else:
|
||||
self.metrics.inc_misses()
|
||||
return True
|
||||
|
Loading…
Reference in New Issue
Block a user