diff options
author | Erik Johnston <erik@matrix.org> | 2014-10-28 11:18:04 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-10-28 11:18:04 +0000 |
commit | da1dda3e1d9d3272527d35c23162c4baf7339d74 (patch) | |
tree | bf779309495c4b5112325652dc7dedb4226fa3d3 /synapse/storage/state.py | |
parent | Clean up LoggingTransaction (diff) | |
download | synapse-da1dda3e1d9d3272527d35c23162c4baf7339d74.tar.xz |
Add transaction level logging and timing information. Add a _simple_delete method
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index 0aa979c9f0..e08acd6404 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -59,6 +59,7 @@ class StateStore(SQLBaseStore): def store_state_groups(self, event): return self.runInteraction( + "store_state_groups", self._store_state_groups_txn, event ) |