summary refs log tree commit diff
path: root/synapse/app/homeserver.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-01-14 13:29:17 +0000
committerGitHub <noreply@github.com>2021-01-14 13:29:17 +0000
commit21a296cd5ac9c450a6e8896e25f0a4afad1c3774 (patch)
tree1b4e20a13f0f0a8f095dc2050ef73c902b7bff8e /synapse/app/homeserver.py
parentFix wrong arguments being passed to BlacklistingAgentWrapper (#9098) (diff)
downloadsynapse-21a296cd5ac9c450a6e8896e25f0a4afad1c3774.tar.xz
Split OidcProvider out of OidcHandler (#9107)
The idea here is that we will have an instance of OidcProvider for each
configured IdP, with OidcHandler just doing the marshalling of them.

For now it's still hardcoded with a single provider.
Diffstat (limited to 'synapse/app/homeserver.py')
-rw-r--r--synapse/app/homeserver.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index cbecf23be6..57a2f5237c 100644
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -429,7 +429,6 @@ def setup(config_options):
             oidc = hs.get_oidc_handler()
             # Loading the provider metadata also ensures the provider config is valid.
             await oidc.load_metadata()
-            await oidc.load_jwks()
 
         await _base.start(hs, config.listeners)