mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 03:58:06 +03:00
Use shorter config key name
This commit is contained in:
parent
3bcbabc9fb
commit
d4af08a167
2 changed files with 5 additions and 4 deletions
|
@ -46,9 +46,9 @@ class TlsConfig(Config):
|
|||
# (e.g. for talking to recaptcha, identity servers, and such)
|
||||
# It should never be used in production, and is intended for
|
||||
# use only when running tests.
|
||||
self.use_insecure_ssl_client = config.get(
|
||||
"i_really_want_to_ignore_ssl_certs_when_i_am_an_https_client_even_"
|
||||
"though_it_is_woefully_insecure_because_i_am_testing_i_promise", False)
|
||||
self.use_insecure_ssl_client_just_for_testing_do_not_use = config.get(
|
||||
"use_insecure_ssl_client_just_for_testing_do_not_use"
|
||||
)
|
||||
|
||||
def default_config(self, config_dir_path, server_name):
|
||||
base_key_name = os.path.join(config_dir_path, server_name)
|
||||
|
|
|
@ -181,7 +181,8 @@ class HomeServer(BaseHomeServer):
|
|||
def build_http_client_context_factory(self):
|
||||
config = self.get_config()
|
||||
return (
|
||||
InsecureInterceptableContextFactory() if config.use_insecure_ssl_client
|
||||
InsecureInterceptableContextFactory()
|
||||
if config.use_insecure_ssl_client_just_for_testing_do_not_use
|
||||
else BrowserLikePolicyForHTTPS()
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue