diff options
author | Erik Johnston <erik@matrix.org> | 2018-03-12 14:34:31 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-03-13 10:55:47 +0000 |
commit | 265b993b8afd2501b2aa3a50670f39d6d97eddb7 (patch) | |
tree | 65949cc5f26498dde00051dfb552073f5a541485 /synapse/handlers/profile.py | |
parent | Move property setting from ReplicationLayer to FederationBase (diff) | |
download | synapse-265b993b8afd2501b2aa3a50670f39d6d97eddb7.tar.xz |
Split replication layer into two
Diffstat (limited to 'synapse/handlers/profile.py')
-rw-r--r-- | synapse/handlers/profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index c386c79bbd..0cfac60d74 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_layer() + self.federation = hs.get_replication_client() hs.get_federation_registry().register_query_handler( "profile", self.on_profile_query ) |