1
0

Don't try to process events we already have a label for

This commit is contained in:
Brendan Abolivier
2019-10-31 14:49:41 +00:00
parent 07cb38e965
commit 911b03ca31

View File

@@ -518,7 +518,8 @@ class EventsBackgroundUpdatesStore(BackgroundUpdateStore):
txn.execute(
"""
SELECT event_id, json FROM event_json
WHERE event_id > ?
LEFT JOIN event_labels USING (event_id)
WHERE event_id > ? AND label IS NULL
LIMIT ?
""",
(last_event_id, batch_size)