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/app/homeserver.py | |
parent | Move property setting from ReplicationLayer to FederationBase (diff) | |
download | synapse-265b993b8afd2501b2aa3a50670f39d6d97eddb7.tar.xz |
Split replication layer into two
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index e375f2bbcf..503f461ab4 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -348,7 +348,7 @@ def setup(config_options): hs.get_state_handler().start_caching() hs.get_datastore().start_profiling() hs.get_datastore().start_doing_background_updates() - hs.get_replication_layer().start_get_pdu_cache() + hs.get_replication_client().start_get_pdu_cache() register_memory_metrics(hs) |