summary refs log tree commit diff
path: root/synapse/storage/event_push_actions.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-03-05 11:33:17 +0000
committerGitHub <noreply@github.com>2018-03-05 11:33:17 +0000
commit42174946f84ec06fb9f11d6c386533a01fc99af3 (patch)
treefed844700d1d8ba70d6c580eab8a8a90c1855985 /synapse/storage/event_push_actions.py
parentMerge pull request #2929 from matrix-org/erikj/split_regististration_store (diff)
parentFix bug with delayed cache invalidation stream (diff)
downloadsynapse-42174946f84ec06fb9f11d6c386533a01fc99af3.tar.xz
Merge pull request #2934 from matrix-org/erikj/cache_fix
Fix bug with delayed cache invalidation stream
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r--synapse/storage/event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py

index 7164293568..912e8db1d3 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py
@@ -76,7 +76,7 @@ class EventPushActionsWorkerStore(SQLBaseStore): name="_find_stream_orderings_for_times_txn", database_engine=self.database_engine, after_callbacks=[], - final_callbacks=[], + exception_callbacks=[], ) self._find_stream_orderings_for_times_txn(cur) cur.close()