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:
Akita Noek 2016-04-11 23:17:10 -04:00
parent 24a841a0bf
commit ecedf491a4

View File

@ -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)