summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-05-12 14:47:40 +0100
committerErik Johnston <erik@matrix.org>2015-05-12 14:47:40 +0100
commit30c72d377ef4047f93a6210e25a92dc5272ea0e9 (patch)
treeefcee941c3882e614b0e86c5549a6cccad0e40ec /synapse
parentWe do actually want to delete rows out of event_backward_extremities (diff)
downloadsynapse-30c72d377ef4047f93a6210e25a92dc5272ea0e9.tar.xz
Newlines
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/event_federation.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/event_federation.py b/synapse/storage/event_federation.py

index f807236eb3..7ea0ee2323 100644 --- a/synapse/storage/event_federation.py +++ b/synapse/storage/event_federation.py
@@ -343,7 +343,6 @@ class EventFederationStore(SQLBaseStore): for e_id, _ in prev_events ]) - # Also delete from the backwards extremities table all ones that # reference events that we have already seen query = ( @@ -352,7 +351,6 @@ class EventFederationStore(SQLBaseStore): ) txn.executemany(query, [(e_id, room_id) for e_id, _ in prev_events]) - txn.call_after( self.get_latest_event_ids_in_room.invalidate, room_id )