diff --git a/awx/sso/views.py b/awx/sso/views.py index 5d34234464..2a68deec1a 100644 --- a/awx/sso/views.py +++ b/awx/sso/views.py @@ -25,6 +25,8 @@ logger = logging.getLogger('awx.sso.views') class BaseRedirectView(RedirectView): + permanent = True + def get_redirect_url(self, *args, **kwargs): last_path = self.request.COOKIES.get('lastPath', '') last_path = urllib.quote(urllib.unquote(last_path).strip('"'))