diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-04-26 11:00:40 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-04-26 11:00:40 +0100 |
commit | c487c42492b6c9b701171d4e5fac70abc0072b19 (patch) | |
tree | c44cb921154e1d68e8cb526d06da089230ed3da6 | |
parent | Merge pull request #751 from matrix-org/markjh/pusher_metrics_manhole (diff) | |
parent | Add a couple of update methods to the PusherSlaveStore (diff) | |
download | synapse-c487c42492b6c9b701171d4e5fac70abc0072b19.tar.xz |
Merge pull request #752 from matrix-org/markjh/more_updates
Add a couple of update methods to the PusherSlaveStore
-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): |