From f1e8011f427a45ee7350701b69b8617ed69a7c8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 11 May 2020 14:16:11 +0200 Subject: [PATCH] fixed comms for certificate checking --- server/src/uds/core/managers/userservice/comms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/uds/core/managers/userservice/comms.py b/server/src/uds/core/managers/userservice/comms.py index 28267019..e4d139ed 100644 --- a/server/src/uds/core/managers/userservice/comms.py +++ b/server/src/uds/core/managers/userservice/comms.py @@ -51,8 +51,8 @@ def _requestActor( r = proxy.doProxyRequest(url=url, data=data, timeout=TIMEOUT) else: verify: typing.Union[bool, str] - # cert = userService.getProperty('cert') - cert = '' # Untils more tests, keep as previous.... TODO: Fix this when fully tested + cert = userService.getProperty('cert') + # cert = '' # Untils more tests, keep as previous.... TODO: Fix this when fully tested if cert: # Generate temp file, and delete it after verify = tempfile.mktemp('udscrt')