From 66fb59a13bc711cdc60b5f33c298ac22e3bd8d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Tue, 1 Dec 2020 11:36:01 +0100 Subject: [PATCH] fixed tests for service on 3.5 actor --- actor/src/udsactor/service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/actor/src/udsactor/service.py b/actor/src/udsactor/service.py index 6e68e4d11..249f3e9b4 100644 --- a/actor/src/udsactor/service.py +++ b/actor/src/udsactor/service.py @@ -318,7 +318,8 @@ class CommonService: # pylint: disable=too-many-instance-attributes self._cfg.actorType, self._cfg.own_token, '', - self._interfaces + self._interfaces, + self._secret ) except Exception as 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, token, username, - self._interfaces + self._interfaces, + self._secret ) self.onLogout(username)