Use correct parameter name for CA file with heat client

When initializing the heat client, rally incorrectly uses the
parameter name "cacert", when python-heatclient expects "ca_file".

Closes-bug: #1585456

Change-Id: I75c1faf91c296b397f2fc3bef023fdf125c5ccab
This commit is contained in:
Dave McCowan 2016-05-25 00:41:14 -04:00
parent de0d076bbf
commit 349d14685f
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ class Heat(OSClient):
token=kc.auth_token,
timeout=CONF.openstack_client_http_timeout,
insecure=self.credential.insecure,
cacert=self.credential.cacert,
ca_file=self.credential.cacert,
**self._get_auth_info(project_name_key=None))
return client