0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-23 03:29:07 +02:00

Fix exit condition

This commit is contained in:
Brendan Abolivier 2019-10-31 23:01:26 +00:00
parent 1c1268245d
commit 1586f2c7e7
No known key found for this signature in database
GPG key ID: 1E015C145F1916CD

View file

@ -546,7 +546,9 @@ class EventsBackgroundUpdatesStore(BackgroundUpdateStore):
txn, "event_store_labels", {"last_event_id": event_id}
)
return len(rows) == batch_size
# We want to return true (to end the background update) only when
# the query returned with less rows than we asked for.
return len(rows) != batch_size
end = yield self.runInteraction(
desc="event_store_labels", func=_event_store_labels_txn