summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-07-23 12:08:19 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-07-23 12:17:23 +0100
commit1d98e2a4335cb0b3071549a7ad7119dbf544d61a (patch)
tree1190843e828a381ec5291147ec51d6a4062f3721
parent4be1620dca24d539573027831b65ffc040bc1ebb (diff)
downloadmorph-1d98e2a4335cb0b3071549a7ad7119dbf544d61a.tar.gz
Fix an incorrect log message when using remote Git cache
It was referring to the remote git cache as 'remote artifact cache'. These are usually the same server (a Trove, defaulting to git.baserock.org) but can be configured independently, so they should not be considered the same. Indentally, the configuration / commandline options in question are 'git-resolve-cache-server' and 'artifact-cache-server'. Both default to 'cache-server' if not set, which in turn defaults to http://<trove-host>:8080/.
-rw-r--r--morphlib/morphologyfactory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/morphologyfactory.py b/morphlib/morphologyfactory.py
index 1cde2c77..cd1972be 100644
--- a/morphlib/morphologyfactory.py
+++ b/morphlib/morphologyfactory.py
@@ -88,7 +88,7 @@ class MorphologyFactory(object):
file_list = repo.ls_tree(sha1)
elif self._rrc is not None:
self.status(msg="Retrieving %(reponame)s %(sha1)s %(filename)s"
- " from the remote artifact cache.",
+ " from the remote git cache.",
reponame=reponame, sha1=sha1, filename=filename,
chatty=True)
try: