mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 19:13:51 +01:00
Revert to putting it around the entire block
This commit is contained in:
parent
9daa4e2a85
commit
31a2b892d8
1 changed files with 122 additions and 122 deletions
|
@ -128,6 +128,7 @@ class Pusher(object):
|
||||||
try:
|
try:
|
||||||
if wait > 0:
|
if wait > 0:
|
||||||
yield synapse.util.async.sleep(wait)
|
yield synapse.util.async.sleep(wait)
|
||||||
|
with Measure(self.clock, "push"):
|
||||||
yield self.get_and_dispatch()
|
yield self.get_and_dispatch()
|
||||||
wait = 0
|
wait = 0
|
||||||
except:
|
except:
|
||||||
|
@ -150,7 +151,6 @@ class Pusher(object):
|
||||||
only_keys=("room", "receipt",),
|
only_keys=("room", "receipt",),
|
||||||
)
|
)
|
||||||
|
|
||||||
with Measure(self.clock, "push"):
|
|
||||||
# limiting to 1 may get 1 event plus 1 presence event, so
|
# limiting to 1 may get 1 event plus 1 presence event, so
|
||||||
# pick out the actual event
|
# pick out the actual event
|
||||||
single_event = None
|
single_event = None
|
||||||
|
|
Loading…
Reference in a new issue