diff options
author | Erik Johnston <erikj@jki.re> | 2018-03-13 15:45:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-13 15:45:08 +0000 |
commit | 95cb401ae0de03af6b939f0bf368386b7a3a3dd9 (patch) | |
tree | b083580d759e063bb51bc15ca801a31a5503f6ea /synapse/app | |
parent | Merge pull request #2981 from matrix-org/erikj/factor_remote_leave (diff) | |
parent | s/replication_client/federation_client/ (diff) | |
download | synapse-95cb401ae0de03af6b939f0bf368386b7a3a3dd9.tar.xz |
Merge pull request #2978 from matrix-org/erikj/refactor_replication_layer
Remove ReplicationLayer and user Client/Server directly
Diffstat (limited to 'synapse/app')
-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 503f461ab4..e477c7ced6 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_client().start_get_pdu_cache() + hs.get_federation_client().start_get_pdu_cache() register_memory_metrics(hs) |