diff --git a/src/modules/DashboardOIDC.py b/src/modules/DashboardOIDC.py index f67a539..4a8f9e2 100644 --- a/src/modules/DashboardOIDC.py +++ b/src/modules/DashboardOIDC.py @@ -30,6 +30,7 @@ class DashboardOIDC: for k in self.providers.keys(): if all([self.providers[k]['client_id'], self.providers[k]['client_secret'], self.providers[k]['issuer']]): try: + print("Requesting " + f"{self.providers[k]['issuer'].strip('/')}/.well-known/openid-configuration") oidc_config = requests.get( f"{self.providers[k]['issuer'].strip('/')}/.well-known/openid-configuration", verify=certifi.where()