diff options
author | Erik Johnston <erik@matrix.org> | 2021-02-22 21:14:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 21:14:42 +0000 |
commit | 66f4949e7f57bad44c582098f702fda057c6c7ad (patch) | |
tree | 40bbcfa9a4dad789f5cbc51c5d523c3f084ef48e /synapse/replication/http/__init__.py | |
parent | Remove vestiges of uploads_path config (#9462) (diff) | |
download | synapse-66f4949e7f57bad44c582098f702fda057c6c7ad.tar.xz |
Fix deleting pushers when using sharded pushers. (#9465)
Diffstat (limited to 'synapse/replication/http/__init__.py')
-rw-r--r-- | synapse/replication/http/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/replication/http/__init__.py b/synapse/replication/http/__init__.py index dd527e807f..cb4a52dbe9 100644 --- a/synapse/replication/http/__init__.py +++ b/synapse/replication/http/__init__.py @@ -21,6 +21,7 @@ from synapse.replication.http import ( login, membership, presence, + push, register, send_event, streams, @@ -42,6 +43,7 @@ class ReplicationRestResource(JsonResource): membership.register_servlets(hs, self) streams.register_servlets(hs, self) account_data.register_servlets(hs, self) + push.register_servlets(hs, self) # The following can't currently be instantiated on workers. if hs.config.worker.worker_app is None: |