diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-14 13:45:48 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-14 13:45:48 +0100 |
commit | f6f902d459c0f888b70742b8f7cca640e544adf6 (patch) | |
tree | 5d6c20248af640821f6903f2672ad9e50b90dbc7 /synapse/storage/state.py | |
parent | Refactor _get_events (diff) | |
download | synapse-f6f902d459c0f888b70742b8f7cca640e544adf6.tar.xz |
Move fetching of events into their own transactions
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index 26fd3b3e67..3f5642642d 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -72,8 +72,6 @@ class StateStore(SQLBaseStore): retcol="event_id", ) - # state = self._get_events_txn(txn, state_ids) - res[group] = state_ids return res |