diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-10-03 18:23:05 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-10-07 17:44:41 +0100 |
commit | 66ebea17235d9d3988d56cd1355656bbb508b3be (patch) | |
tree | 965e57941d1aae9ab699b769b0048ef8b1ce4126 /synapse/storage/state.py | |
parent | Move roommember's bg updates to a dedicated store (diff) | |
download | synapse-66ebea17235d9d3988d56cd1355656bbb508b3be.tar.xz |
Lint
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index 71b533c006..a941a5ae3f 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -1288,7 +1288,9 @@ class StateGroupWorkerStore( return self.runInteraction("store_state_group", _store_state_group_txn) -class StateBackgroundUpdateStore(StateGroupBackgroundUpdateStore, BackgroundUpdateStore): +class StateBackgroundUpdateStore( + StateGroupBackgroundUpdateStore, BackgroundUpdateStore +): STATE_GROUP_DEDUPLICATION_UPDATE_NAME = "state_group_state_deduplication" STATE_GROUP_INDEX_UPDATE_NAME = "state_group_state_type_index" |