mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-25 20:59:23 -05:00
Raise ConfigError instead
This commit is contained in:
parent
e6a7a15f93
commit
e87d7a4b0f
@ -95,7 +95,9 @@ class SynapseHomeServer(HomeServer):
|
||||
site_tag = listener_config.get("tag", port)
|
||||
|
||||
if tls and config.no_tls:
|
||||
return []
|
||||
raise ConfigError(
|
||||
"Listener on port %i has TLS enabled, but no_tls is set" % (port,),
|
||||
)
|
||||
|
||||
resources = {}
|
||||
for res in listener_config["resources"]:
|
||||
|
Loading…
Reference in New Issue
Block a user