summaryrefslogtreecommitdiff
path: root/buildstream/element.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-01-15 13:31:06 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2018-01-16 12:58:39 +0000
commitd6ebd6cea97e76e79c2437d4ae93944a983e5727 (patch)
tree313d12ab238ad7f5d6705348bbd6bc2178543ee6 /buildstream/element.py
parente311ebe5239cf4927eb5c9094dce0d37fc169819 (diff)
downloadbuildstream-d6ebd6cea97e76e79c2437d4ae93944a983e5727.tar.gz
Rename _force_inconsistent() to _schedule_tracking()
_force_inconsistent is too low level. Keep that detail contained in the Source class.
Diffstat (limited to 'buildstream/element.py')
-rw-r--r--buildstream/element.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 4b084a1b9..54f93091f 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -734,7 +734,7 @@ class Element(Plugin):
consistency = min(consistency, source_consistency)
return consistency
- # _force_inconsistent():
+ # _schedule_tracking():
#
# Force an element state to be inconsistent. Any sources appear to be
# inconsistent.
@@ -745,9 +745,9 @@ class Element(Plugin):
# and reinterrogation of element state after tracking of elements
# succeeds.
#
- def _force_inconsistent(self):
+ def _schedule_tracking(self):
for source in self.__sources:
- source._force_inconsistent()
+ source._schedule_tracking()
# _cached():
#