diff options
author | David Robertson <davidr@element.io> | 2022-11-15 16:36:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 16:36:43 +0000 |
commit | 258b5285b6b486526dffef9431c2ab063913f42b (patch) | |
tree | f36309d0f3e88f9cf99a43caf705253e9c211e80 /synapse/app | |
parent | Send content rules with pattern_type to clients (#14356) (diff) | |
download | synapse-258b5285b6b486526dffef9431c2ab063913f42b.tar.xz |
Fix typechecking errors introduced in #14128 (#14455)
* Fix typechecking errors introduced in #14128 * Changelog * Correct annotations so that context_factory works if you don't use TLS
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 8f5b1a20f5..41d2732ef9 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -364,8 +364,8 @@ def listen_http( root_resource: Resource, version_string: str, max_request_body_size: int, - context_factory: IOpenSSLContextFactory, - reactor: IReactorSSL = reactor, + context_factory: Optional[IOpenSSLContextFactory], + reactor: ISynapseReactor = reactor, ) -> List[Port]: port = listener_config.port bind_addresses = listener_config.bind_addresses |