Merge "Fix image-import call"
This commit is contained in:
commit
b956f48078
@ -257,7 +257,7 @@ class Controller(object):
|
|||||||
def image_import(self, image_id, method='glance-direct'):
|
def image_import(self, image_id, method='glance-direct'):
|
||||||
"""Import Image via method."""
|
"""Import Image via method."""
|
||||||
url = '/v2/images/%s/import' % image_id
|
url = '/v2/images/%s/import' % image_id
|
||||||
data = {'import_method': method}
|
data = {'method': {'name': method}}
|
||||||
resp, body = self.http_client.post(url, data=data)
|
resp, body = self.http_client.post(url, data=data)
|
||||||
return body, resp
|
return body, resp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user