summaryrefslogtreecommitdiff
path: root/heat/engine/clients/os/keystone/heat_keystoneclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/engine/clients/os/keystone/heat_keystoneclient.py')
-rw-r--r--heat/engine/clients/os/keystone/heat_keystoneclient.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/heat/engine/clients/os/keystone/heat_keystoneclient.py b/heat/engine/clients/os/keystone/heat_keystoneclient.py
index 315c57313..fcb72fcb2 100644
--- a/heat/engine/clients/os/keystone/heat_keystoneclient.py
+++ b/heat/engine/clients/os/keystone/heat_keystoneclient.py
@@ -152,12 +152,14 @@ class KsClientWrapper(object):
self._domain_admin_client = kc_v3.Client(
session=self.session,
auth=self.domain_admin_auth,
+ connect_retries=cfg.CONF.client_retry_limit,
region_name=self.region_name)
return self._domain_admin_client
def _v3_client_init(self):
client = kc_v3.Client(session=self.session,
+ connect_retries=cfg.CONF.client_retry_limit,
region_name=self.region_name)
if hasattr(self.context.auth_plugin, 'get_access'):