diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-12-07 17:56:11 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-12-07 17:56:11 +0000 |
commit | 6a5ff5f223c1b4311aa63574663c0335d0c6bd79 (patch) | |
tree | b0876351b0c892e23c81ac5a3d85f329d34df7b6 /synapse/storage/events.py | |
parent | Merge pull request #423 from matrix-org/markjh/archived_flag (diff) | |
download | synapse-6a5ff5f223c1b4311aa63574663c0335d0c6bd79.tar.xz |
Track the time spent in the database per request.
and track the number of transactions that request started.
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 7088f2709b..fc5725097c 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -649,7 +649,7 @@ class EventsStore(SQLBaseStore): ] rows = self._new_transaction( - conn, "do_fetch", [], self._fetch_event_rows, event_ids + conn, "do_fetch", [], None, self._fetch_event_rows, event_ids ) row_dict = { |