Always mark remotes as up if we receive a signed request from them

pull/2190/head
Erik Johnston 2017-05-05 10:34:53 +01:00
parent 60833c8978
commit db7d0c3127
1 changed files with 7 additions and 0 deletions

View File

@ -79,6 +79,7 @@ class Authenticator(object):
def __init__(self, hs):
self.keyring = hs.get_keyring()
self.server_name = hs.hostname
self.store = hs.get_datastore()
# A method just so we can pass 'self' as the authenticator to the Servlets
@defer.inlineCallbacks
@ -138,6 +139,12 @@ class Authenticator(object):
logger.info("Request from %s", origin)
request.authenticated_entity = origin
# If we get a valid signed request from the other side, its probably
# alive
retry_timings = yield self.store.get_destination_retry_timings(origin)
if retry_timings and retry_timings["retry_last_ts"]:
self.store.set_destination_retry_timings(origin, 0, 0)
defer.returnValue(origin)