diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-04-26 10:45:02 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-04-26 10:45:02 +0100 |
commit | 9c417c54d461be6877b58220311c7c1bb83dabb1 (patch) | |
tree | c44cb921154e1d68e8cb526d06da089230ed3da6 /synapse/app | |
parent | Merge pull request #751 from matrix-org/markjh/pusher_metrics_manhole (diff) | |
download | synapse-9c417c54d461be6877b58220311c7c1bb83dabb1.tar.xz |
Add a couple of update methods to the PusherSlaveStore
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/pusher.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py index e6aa0aa65c..9381fe2251 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py @@ -89,6 +89,14 @@ class PusherSlaveStore( DataStore.update_pusher_last_stream_ordering_and_success.__func__ ) + update_pusher_failing_since = ( + DataStore.update_pusher_failing_since.__func__ + ) + + update_pusher_last_stream_ordering = ( + DataStore.update_pusher_last_stream_ordering.__func__ + ) + class PusherServer(HomeServer): |