summaryrefslogtreecommitdiff
path: root/icktool
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-03-24 14:02:20 +0200
committerLars Wirzenius <liw@liw.fi>2018-03-24 19:06:20 +0200
commit78d9c80226c52bcd70e27e7ee2a3a7754f644b53 (patch)
tree407131ac41543d0950c9576a141de2a6cc693973 /icktool
parentd8bf5f405c48980d69a4f2cef8179fb605f0c743 (diff)
downloadick2-78d9c80226c52bcd70e27e7ee2a3a7754f644b53.tar.gz
Change: rename blob service to artifact store
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