Skip to content
Snippets Groups Projects
Commit bd3d329c authored by Amber Brown's avatar Amber Brown
Browse files

fixes

parent abfe4b29
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ class StreamChangeCache(object):
not_known_entities = set(entities) - set(self._entity_to_key)
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))}
.intersection(entities)
.union(not_known_entities)
......@@ -114,7 +114,7 @@ class StreamChangeCache(object):
assert type(stream_pos) is int
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))}
else:
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment