From a45e1fb2db947ca11bf874ca2a667e69ed1b161e Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 2 Jun 2021 23:45:54 +0200 Subject: [PATCH] fix logout handling to reference correctli oauth2 client_id --- deployer/hub.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deployer/hub.py b/deployer/hub.py index 2c66b5a6fd..e1ebfd2ae6 100644 --- a/deployer/hub.py +++ b/deployer/hub.py @@ -248,9 +248,8 @@ def get_generated_config(self, auth_provider: KeyProvider, secret_key): # # Allow explicilty ignoring auth0 setup if self.spec['auth0'].get('enabled', True): - client = auth_provider.ensure_client( - self.spec['name'], + self.cluster.spec['name'], self.spec['domain'], self.spec['auth0']['connection'] )