1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-23 17:34:17 +03:00

fixed tests for service on 3.5 actor

This commit is contained in:
Adolfo Gómez García 2020-12-01 11:36:01 +01:00
parent 78372e593a
commit 66fb59a13b

View File

@ -318,7 +318,8 @@ class CommonService: # pylint: disable=too-many-instance-attributes
self._cfg.actorType, self._cfg.actorType,
self._cfg.own_token, self._cfg.own_token,
'', '',
self._interfaces self._interfaces,
self._secret
) )
except Exception as e: except Exception as e:
logger.error('Error notifying final logout to UDS: %s', e) logger.error('Error notifying final logout to UDS: %s', e)
@ -448,7 +449,8 @@ class CommonService: # pylint: disable=too-many-instance-attributes
self._cfg.actorType, self._cfg.actorType,
token, token,
username, username,
self._interfaces self._interfaces,
self._secret
) )
self.onLogout(username) self.onLogout(username)