From 80677ef796300ec9c5b1f833f7022ef62fa8418e Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Mon, 23 Oct 2017 11:54:40 +0000 Subject: _pipeline.py: Give the correct artifact pull URL in remote ticker I was seeing messages like this: Fetching artifact list from None However, the artifact cache did have the correct pull URL set -- the issue was that I had overridden it my own config, and the string we sent to the ticker didn't take that override into account. --- buildstream/_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py index ba105d8ff..275b2df7a 100644 --- a/buildstream/_pipeline.py +++ b/buildstream/_pipeline.py @@ -176,7 +176,7 @@ class Pipeline(): if self.artifacts.can_fetch(): try: if remote_ticker: - remote_ticker(context.artifact_pull) + remote_ticker(self.artifacts.artifact_pull) self.artifacts.fetch_remote_refs() except _ArtifactError: self.message(self.target, MessageType.WARN, "Failed to fetch remote refs") -- cgit v1.2.1