This commit is contained in:
Amber Brown 2018-06-26 17:28:12 +01:00
parent abfe4b2957
commit bd3d329c88
2 changed files with 2 additions and 2 deletions

0
changelog.d/3447.misc Normal file
View File

View File

@ -78,7 +78,7 @@ class StreamChangeCache(object):
not_known_entities = set(entities) - set(self._entity_to_key) not_known_entities = set(entities) - set(self._entity_to_key)
result = ( result = (
{self._cache[k] for k in in self._cache.islice( {self._cache[k] for k in self._cache.islice(
start=self._cache.bisect_right(stream_pos))} start=self._cache.bisect_right(stream_pos))}
.intersection(entities) .intersection(entities)
.union(not_known_entities) .union(not_known_entities)
@ -114,7 +114,7 @@ class StreamChangeCache(object):
assert type(stream_pos) is int assert type(stream_pos) is int
if stream_pos >= self._earliest_known_stream_pos: if stream_pos >= self._earliest_known_stream_pos:
return {self._cache[k] for k in in self._cache.islice( return {self._cache[k] for k in self._cache.islice(
start=self._cache.bisect_right(stream_pos))} start=self._cache.bisect_right(stream_pos))}
else: else:
return None return None