mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-16 00:57:54 -05:00
Merge branch 'develop' into dbkr/email_notifs_on_pusher
This commit is contained in:
commit
1f71f386f6
19 changed files with 511 additions and 27 deletions
|
|
@ -165,12 +165,14 @@ class SlavedEventStore(BaseSlavedStore):
|
|||
|
||||
stream = result.get("forward_ex_outliers")
|
||||
if stream:
|
||||
self._stream_id_gen.advance(stream["position"])
|
||||
for row in stream["rows"]:
|
||||
event_id = row[1]
|
||||
self._invalidate_get_event_cache(event_id)
|
||||
|
||||
stream = result.get("backward_ex_outliers")
|
||||
if stream:
|
||||
self._backfill_id_gen.advance(-stream["position"])
|
||||
for row in stream["rows"]:
|
||||
event_id = row[1]
|
||||
self._invalidate_get_event_cache(event_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue