commit 9e6798a667de23958cda609efbc35f096bcb1725 Author: Jürn Brodersen Date: Mon May 7 14:39:49 2018 +0200 Move Request diff --git a/management/univention-management-console/univention-management-console-web-server b/management/univention-management-console/univention-management-console-web-server index f3948764c2..e4e3bc38f3 100755 --- a/management/univention-management-console/univention-management-console-web-server +++ b/management/univention-management-console/univention-management-console-web-server @@ -152,9 +152,10 @@ class SessionClient(object): def _authenticated(self, success, response): """Callback function for 'authenticated' from UMCP-Server.""" CORE.process('SessionClient(0x%x): _authenticated: success=%s status=%s message=%s' % (id(self), success, response.status, response.message)) - self._auth_response.status = response.status - self._auth_response.result = response.result - self._auth_response.message = response.message + self._auth_response = response + # self._auth_response.status = response.status + # self._auth_response.result = response.result + # self._auth_response.message = response.message self._auth_response_queue.put(self._auth_response) # release queue object self._auth_response_queue = None @@ -162,7 +163,7 @@ class SessionClient(object): def authenticate_user(self, request, response_queue): """Send authentication request to UMC server.""" CORE.info('SessionClient(0x%x): authenticate_user: sending authentication request for user %r' % (id(self), request.body.get('username'))) - self._auth_response = Response(request) + # self._auth_response = Response(request) self._auth_response_queue = response_queue self.client.authenticate(request)