diff --git a/client/thin/src/uds/rest.py b/client/thin/src/uds/rest.py index df87f663d..b76968d0c 100644 --- a/client/thin/src/uds/rest.py +++ b/client/thin/src/uds/rest.py @@ -39,9 +39,9 @@ import json import six import osDetector - from .log import logger + class RetryException(Exception): pass @@ -65,7 +65,7 @@ class RestRequest(object): logger.debug('Requesting {}'.format(url)) try: - r = requests.get(url, headers={'Content-type': 'application/json', 'User-Agent': osDetector.getOs() + " - UDS Connector " + VERSION }) + r = requests.get(url, headers={'Content-type': 'application/json', 'User-Agent': osDetector.getOs() + " - UDS Connector " + VERSION }, verify=False) except requests.exceptions.ConnectionError as e: raise Exception('Error connecting to UDS Server at {}'.format(self.restApiUrl[0:-11]))