mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 09:03:51 +01:00
Don't try to process events we already have a label for
This commit is contained in:
parent
07cb38e965
commit
911b03ca31
1 changed files with 2 additions and 1 deletions
|
@ -518,7 +518,8 @@ class EventsBackgroundUpdatesStore(BackgroundUpdateStore):
|
||||||
txn.execute(
|
txn.execute(
|
||||||
"""
|
"""
|
||||||
SELECT event_id, json FROM event_json
|
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 ?
|
LIMIT ?
|
||||||
""",
|
""",
|
||||||
(last_event_id, batch_size)
|
(last_event_id, batch_size)
|
||||||
|
|
Loading…
Reference in a new issue