From 7c3f9cb609b5d7817981fa1eb362ec0a8a674f17 Mon Sep 17 00:00:00 2001 From: sjyu1 <93505580+sjyu1@users.noreply.github.com> Date: Mon, 12 Jan 2026 12:39:02 +0900 Subject: [PATCH] =?UTF-8?q?sso=20logout=EC=8B=9C=20=ED=86=A0=ED=81=B0?= =?UTF-8?q?=EA=B0=92=20=EB=AC=B8=EC=9E=90=EC=97=B4=EB=A1=9C=20=EC=B9=98?= =?UTF-8?q?=ED=99=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pybind/mgr/dashboard/controllers/saml2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/controllers/saml2.py b/src/pybind/mgr/dashboard/controllers/saml2.py index d16ab7da5a8cb..1599b6df4217b 100644 --- a/src/pybind/mgr/dashboard/controllers/saml2.py +++ b/src/pybind/mgr/dashboard/controllers/saml2.py @@ -69,7 +69,7 @@ def auth_response(self, **kwargs): token = JwtManager.gen_token(username) JwtManager.set_user(JwtManager.decode_token(token)) - token = token.decode('utf-8') + token = token.decode('utf-8') if isinstance(token, bytes) else token self._set_token_cookie(url_prefix, token) raise cherrypy.HTTPRedirect("{}/#/login?access_token={}".format(url_prefix, token))