From 78d9c80226c52bcd70e27e7ee2a3a7754f644b53 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 24 Mar 2018 14:02:20 +0200 Subject: Change: rename blob service to artifact store --- icktool | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'icktool') 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 -- cgit v1.2.1