summaryrefslogtreecommitdiff
path: root/icktool
diff options
context:
space:
mode:
Diffstat (limited to 'icktool')
-rwxr-xr-xicktool6
1 files changed, 3 insertions, 3 deletions
diff --git a/icktool b/icktool
index 11229bd..625d9b4 100755
--- a/icktool
+++ b/icktool
@@ -364,7 +364,7 @@ class Icktool(cliapp.Application):
token = self.settings['token'] or self._new_token()
blob_api = BlobAPI()
blob_api.set_token(token)
- blob_api.set_url(api.get_blob_service_url())
+ blob_api.set_url(api.get_artifact_store_url())
blob_api.set_verify(self.settings['verify-tls'])
return blob_api
@@ -429,10 +429,10 @@ class API:
if code == 200:
return json.loads(text)
- def get_blob_service_url(self):
+ def get_artifact_store_url(self):
version = self.get_version()
if version:
- return version.get('blob_service')
+ return version.get('artifact_store')
def get(self, path):
assert self._url is not None