Add measure on check_host_in_room
This commit is contained in:
parent
3f11953fcb
commit
25414b44a2
|
@ -278,6 +278,7 @@ class Auth(object):
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def check_host_in_room(self, room_id, host):
|
def check_host_in_room(self, room_id, host):
|
||||||
|
with Measure(self.clock, "check_host_in_room"):
|
||||||
curr_state_id = yield self.state.get_current_state_ids(room_id)
|
curr_state_id = yield self.state.get_current_state_ids(room_id)
|
||||||
|
|
||||||
for (etype, state_key), event_id in curr_state_id.items():
|
for (etype, state_key), event_id in curr_state_id.items():
|
||||||
|
|
Loading…
Reference in New Issue