mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 22:28:54 +01:00
Add missing yield
This commit is contained in:
parent
e40f25ebe1
commit
86e9bbc74e
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ class HttpPusher(object):
|
||||||
if processed:
|
if processed:
|
||||||
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
||||||
self.last_stream_ordering = push_action['stream_ordering']
|
self.last_stream_ordering = push_action['stream_ordering']
|
||||||
self.store.update_pusher_last_stream_ordering_and_success(
|
yield self.store.update_pusher_last_stream_ordering_and_success(
|
||||||
self.app_id, self.pushkey, self.user_id,
|
self.app_id, self.pushkey, self.user_id,
|
||||||
self.last_stream_ordering,
|
self.last_stream_ordering,
|
||||||
self.clock.time_msec()
|
self.clock.time_msec()
|
||||||
|
|
Loading…
Reference in a new issue