summary refs log tree commit diff
path: root/synapse/handlers/profile.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-13 13:26:52 +0000
committerErik Johnston <erik@matrix.org>2018-03-13 13:26:52 +0000
commitcb9f8e527c09315eea05955ec970154ea2fb9729 (patch)
treef3dc781f601bb485db3fd244e0dab1d817ae37d8 /synapse/handlers/profile.py
parents/replication_server/federation_server (diff)
downloadsynapse-cb9f8e527c09315eea05955ec970154ea2fb9729.tar.xz
s/replication_client/federation_client/
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r--synapse/handlers/profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py
index 0cfac60d74..cb710fe796 100644
--- a/synapse/handlers/profile.py
+++ b/synapse/handlers/profile.py
@@ -31,7 +31,7 @@ class ProfileHandler(BaseHandler):
     def __init__(self, hs):
         super(ProfileHandler, self).__init__(hs)
 
-        self.federation = hs.get_replication_client()
+        self.federation = hs.get_federation_client()
         hs.get_federation_registry().register_query_handler(
             "profile", self.on_profile_query
         )