summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-05-23 09:11:05 +0200
committerJürg Billeter <j@bitron.ch>2018-07-09 15:44:49 +0200
commit5f4b9377d7c90db2dc959b965b5f0cbe6d691e94 (patch)
treee424bc02d155a8f58159c2e829099cdee03f1ed2
parent3d1e23d638f7d2fbbb84e9d831a19529677559df (diff)
downloadbuildstream-5f4b9377d7c90db2dc959b965b5f0cbe6d691e94.tar.gz
_artifactcache/artifactcache.py: Update remote init error message
initialize_remotes() no longer fetches remote refs.
-rw-r--r--buildstream/_artifactcache/artifactcache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_artifactcache/artifactcache.py b/buildstream/_artifactcache/artifactcache.py
index 2d745f8c2..875f46543 100644
--- a/buildstream/_artifactcache/artifactcache.py
+++ b/buildstream/_artifactcache/artifactcache.py
@@ -356,7 +356,7 @@ class ArtifactCache():
#
def _initialize_remotes(self):
def remote_failed(url, error):
- self._message(MessageType.WARN, "Failed to fetch remote refs from {}: {}".format(url, error))
+ self._message(MessageType.WARN, "Failed to initialize remote {}: {}".format(url, error))
with self.context.timed_activity("Initializing remote caches", silent_nested=True):
self.initialize_remotes(on_failure=remote_failed)