From 41d8311ac83cc97e0f02800089c47b5ce4630e8e Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Mon, 17 Mar 2014 10:30:30 +1000 Subject: [PATCH] Set the service_type for the builder If we don't do this we can't lookup the endpoint. Change-Id: I7eae87afc9e4d9ef9dd4f5877b71a4ebe299df0a --- solumclient/builder/v1/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solumclient/builder/v1/client.py b/solumclient/builder/v1/client.py index fdfa26d..616ea13 100644 --- a/solumclient/builder/v1/client.py +++ b/solumclient/builder/v1/client.py @@ -19,6 +19,8 @@ from solumclient.openstack.common.apiclient import client class Client(client.BaseClient): """Client for the Solum v1 API.""" + service_type = "image_builder" + def __init__(self, http_client, extensions=None): """Initialize a new client for the Builder v1 API.""" super(Client, self).__init__(http_client, extensions)