Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Always mark remotes as up if we receive a signed request from them
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed May 5, 2017
1 parent 60833c8 commit db7d0c3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions synapse/federation/transport/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -138,6 +139,12 @@ def strip_quotes(value):
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)


Expand Down

0 comments on commit db7d0c3

Please sign in to comment.