From ecedf491a4a8dd33d648111e0a64328f1f0aadef Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Mon, 11 Apr 2016 23:17:10 -0400 Subject: [PATCH] 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. --- awx/sso/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/sso/views.py b/awx/sso/views.py index 2923bf5957..962b89943e 100644 --- a/awx/sso/views.py +++ b/awx/sso/views.py @@ -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)