summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-09 16:05:21 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-10 16:24:58 +0900
commitba4e5779e2a03b8f6d2b9cae1e33f8f41f7bf855 (patch)
treef97617fd2b3a905d686444b3a4e0263559c02838
parent2a2f37f75a524c9e1accf3a152569d70c04be174 (diff)
downloadbuildstream-ba4e5779e2a03b8f6d2b9cae1e33f8f41f7bf855.tar.gz
pullqueue.py: Now call Element.pull() instead of the old Element.fetch()
-rw-r--r--buildstream/_scheduler/pullqueue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_scheduler/pullqueue.py b/buildstream/_scheduler/pullqueue.py
index 73d038b34..2c7e5288e 100644
--- a/buildstream/_scheduler/pullqueue.py
+++ b/buildstream/_scheduler/pullqueue.py
@@ -23,7 +23,7 @@
from . import Queue, QueueType
-# A queue which fetches element artifacts
+# A queue which pulls element artifacts
#
class PullQueue(Queue):
@@ -33,7 +33,7 @@ class PullQueue(Queue):
def process(self, element):
# does not raise an exception if artifact is unavailable
- element._fetch()
+ element._pull()
def skip(self, element):
return element._cached()