Don't measure across event stream call, as it lasts for a long time.

pull/560/head
Erik Johnston 2016-02-09 09:37:09 +00:00
parent c486b7b41c
commit 549698b1e0
1 changed files with 122 additions and 122 deletions

View File

@ -128,7 +128,6 @@ class Pusher(object):
try:
if wait > 0:
yield synapse.util.async.sleep(wait)
with Measure(self.clock, "push"):
yield self.get_and_dispatch()
wait = 0
except:
@ -151,6 +150,7 @@ class Pusher(object):
only_keys=("room", "receipt",),
)
with Measure(self.clock, "push"):
# limiting to 1 may get 1 event plus 1 presence event, so
# pick out the actual event
single_event = None