mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-26 16:16:31 -06:00
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:
parent
abefb64bea
commit
7e1fdd2c58
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user