From 349d14685faf2c2a66642cf35fba92a27295687b Mon Sep 17 00:00:00 2001 From: Dave McCowan Date: Wed, 25 May 2016 00:41:14 -0400 Subject: [PATCH] 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 --- rally/osclients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rally/osclients.py b/rally/osclients.py index a4eb9a3dae..beb61e4ef1 100644 --- a/rally/osclients.py +++ b/rally/osclients.py @@ -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