rpcserver.login_x509: Actually return reply from __call__ method

__call__ didn't return causing internal error in wsgi application. Previously
this bug was hidden by some other error and the code worked even though it
shouldn't.

https://pagure.io/freeipa/issue/6819

Reviewed-By: Pavel Vomacka <pvomacka@redhat.com>
This commit is contained in:
David Kupka 2017-03-27 16:09:09 +02:00 committed by Pavel Vomacka
parent abefb64bea
commit 7e1fdd2c58

View File

@ -842,7 +842,7 @@ class login_x509(KerberosLogin):
environ, start_response, 'KRB5CCNAME not set',
'Authentication failed')
super(login_x509, self).__call__(environ, start_response)
return super(login_x509, self).__call__(environ, start_response)
class login_password(Backend, KerberosSession):