From 1d98e2a4335cb0b3071549a7ad7119dbf544d61a Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Wed, 23 Jul 2014 12:08:19 +0100 Subject: 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://:8080/. --- morphlib/morphologyfactory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'morphlib') 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: -- cgit v1.2.1