Added verify attribute to execute_request method

To be able to control whether to verify the server's TLS certificate
or not, the verify attribute has been added to the execute_request
method.
This commit is contained in:
Jesper Håkansson 2019-06-18 09:21:31 +02:00 committed by Evgeny Ezhov
parent ea139d2ec7
commit 991e645fdb

View file

@ -86,6 +86,9 @@ class Client(object):
# request timeout in seconds
timeout = 30
# controls whether to verify the server's TLS certificate or not
verify = True
# HTTP headers for different actions
http_header = {
'list': ["Accept: */*", "Depth: 1"],
@ -159,7 +162,8 @@ class Client(object):
headers=self.get_headers(action, headers_ext),
timeout=self.timeout,
data=data,
stream=True
stream=True,
verify=self.verify
)
if response.status_code == 507:
raise NotEnoughSpace()