diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-03-23 11:10:36 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-03-23 12:23:22 +0000 |
commit | 5a16cb4bf036c6b1914d6c6248ed640c289b59e3 (patch) | |
tree | 10fd4e468223f0a47e273905d7ed83a297559ee2 /synapse/handlers/profile.py | |
parent | push federation retry limiter down to matrixfederationclient (diff) | |
download | synapse-5a16cb4bf036c6b1914d6c6248ed640c289b59e3.tar.xz |
Ignore backoff history for invites, aliases, and roomdirs
Add a param to the federation client which lets us ignore historical backoff data for federation queries, and set it for a handful of operations.
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r-- | synapse/handlers/profile.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index abd1fb28cb..9bf638f818 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -52,7 +52,8 @@ class ProfileHandler(BaseHandler): args={ "user_id": target_user.to_string(), "field": "displayname", - } + }, + ignore_backoff=True, ) except CodeMessageException as e: if e.code != 404: @@ -99,7 +100,8 @@ class ProfileHandler(BaseHandler): args={ "user_id": target_user.to_string(), "field": "avatar_url", - } + }, + ignore_backoff=True, ) except CodeMessageException as e: if e.code != 404: |