diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-01-14 13:29:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 13:29:17 +0000 |
commit | 21a296cd5ac9c450a6e8896e25f0a4afad1c3774 (patch) | |
tree | 1b4e20a13f0f0a8f095dc2050ef73c902b7bff8e /synapse/app | |
parent | Fix wrong arguments being passed to BlacklistingAgentWrapper (#9098) (diff) | |
download | synapse-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')
-rw-r--r-- | synapse/app/homeserver.py | 1 |
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) |