mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
Removed erroneous sso login error log
The log message here does not indicate a login failure at all, in fact it doesn't appear like we get a login failed message, they just don't get authed.
This commit is contained in:
parent
24a841a0bf
commit
ecedf491a4
@ -27,7 +27,6 @@ class BaseRedirectView(RedirectView):
|
||||
def get_redirect_url(self, *args, **kwargs):
|
||||
last_path = self.request.COOKIES.get('lastPath', '')
|
||||
last_path = urllib.quote(urllib.unquote(last_path).strip('"'))
|
||||
logger.warning(smart_text(u"Redirecting invalid SSO login attempt".format(last_path)))
|
||||
url = reverse('ui:index')
|
||||
if last_path:
|
||||
return '%s#%s' % (url, last_path)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user