Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

set worker_app for frontend proxy test #7003

Merged
merged 1 commit into from
Feb 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/7003.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refactoring work in preparation for changing the event redaction algorithm.
5 changes: 5 additions & 0 deletions tests/app/test_frontend_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ def make_homeserver(self, reactor, clock):

return hs

def default_config(self, name="test"):
c = super().default_config(name)
c["worker_app"] = "synapse.app.frontend_proxy"
return c

def test_listen_http_with_presence_enabled(self):
"""
When presence is on, the stub servlet will not register.
Expand Down