summaryrefslogtreecommitdiff
path: root/openstackclient/image
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/image')
-rw-r--r--openstackclient/image/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/openstackclient/image/client.py b/openstackclient/image/client.py
index c78f4425..8e2d6cd9 100644
--- a/openstackclient/image/client.py
+++ b/openstackclient/image/client.py
@@ -46,6 +46,7 @@ def make_client(instance):
endpoint = instance.get_endpoint_for_service_type(
API_NAME,
region_name=instance._region_name,
+ endpoint_type=instance._endpoint_type,
)
client = image_client(
@@ -68,6 +69,7 @@ def make_client(instance):
endpoint=instance.get_endpoint_for_service_type(
IMAGE_API_TYPE,
region_name=instance._region_name,
+ endpoint_type=instance._endpoint_type,
)
)