diff options
author | Erik Johnston <erik@matrix.org> | 2018-06-01 11:55:08 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-06-01 11:55:08 +0100 |
commit | c33810d9ccd6cb954eaf2924ecdbdcc0a79e67af (patch) | |
tree | 3039821bbd61dec6b970b9a2c7ae531e92609ce2 /synapse/storage | |
parent | Remove spurious break (diff) | |
download | synapse-c33810d9ccd6cb954eaf2924ecdbdcc0a79e67af.tar.xz |
Remove spurious conditional
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/stream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/stream.py b/synapse/storage/stream.py index 5062bf4e47..0d32a3a498 100644 --- a/synapse/storage/stream.py +++ b/synapse/storage/stream.py @@ -828,8 +828,8 @@ class StreamWorkerStore(EventsWorkerStore, SQLBaseStore): rows.extend(new_rows) - if limit > 0: - rows = rows[:limit] + # We may have inserted more rows than necessary in the loop above + rows = rows[:limit] if rows: chunk = rows[-1].chunk_id |