mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-05-28 22:22:11 -04:00
set worker_app for frontend proxy test (#7003)
to stop the federationhandler trying to do master stuff
This commit is contained in:
parent
b32ac60c22
commit
cab4a52535
2 changed files with 6 additions and 0 deletions
1
changelog.d/7003.misc
Normal file
1
changelog.d/7003.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Refactoring work in preparation for changing the event redaction algorithm.
|
|
@ -27,6 +27,11 @@ class FrontendProxyTests(HomeserverTestCase):
|
||||||
|
|
||||||
return hs
|
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):
|
def test_listen_http_with_presence_enabled(self):
|
||||||
"""
|
"""
|
||||||
When presence is on, the stub servlet will not register.
|
When presence is on, the stub servlet will not register.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue