Use os_cache in place of no_cache

python-novaclient has deprecated number of arguments. Let's use
os_cache in place of no_cache for the client intialization in
integration tests. This seems to be failing with TypeError.

Change-Id: I25f85b89a50ef4746d2dd3b27f2a066e1746c769
This commit is contained in:
rabi 2017-01-20 07:53:38 +05:30
parent 1bb629d376
commit 6a64578abd

View File

@ -158,7 +158,7 @@ class ClientManager(object):
service_type='compute',
endpoint_type='publicURL',
region_name=region,
no_cache=True,
os_cache=False,
insecure=self.insecure,
cacert=self.ca_file,
http_log_debug=True)