Don't hack the image url
It's actually breaking usage against HP Public Cloud. Change-Id: Ic172786c6d1272798b768078a0bcf246f8d64ca8
This commit is contained in:

committed by
Dean Troyer

parent
5b8f18fe4b
commit
59727ba2f9
openstackclient/api
@ -19,11 +19,18 @@ from openstackclient.api import api
|
||||
class APIv1(api.BaseAPI):
|
||||
"""Image v1 API"""
|
||||
|
||||
_endpoint_suffix = 'v1'
|
||||
|
||||
def __init__(self, endpoint=None, **kwargs):
|
||||
super(APIv1, self).__init__(endpoint=endpoint, **kwargs)
|
||||
|
||||
self.endpoint = self.endpoint.rstrip('/')
|
||||
self._munge_url()
|
||||
|
||||
def _munge_url(self):
|
||||
# Hack this until discovery is up
|
||||
self.endpoint = '/'.join([self.endpoint.rstrip('/'), 'v1'])
|
||||
if self._endpoint_suffix not in self.endpoint.split('/')[-1]:
|
||||
self.endpoint = '/'.join([self.endpoint, self._endpoint_suffix])
|
||||
|
||||
def image_list(
|
||||
self,
|
||||
|
Reference in New Issue
Block a user