diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-01-25 17:45:37 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-01-25 17:45:37 +0900 |
commit | df10c494945aacc7e1eaeef242c667d3a1045396 (patch) | |
tree | 2a7426e599bcb9057fbd5ebdbeb769b8508b5017 /buildstream | |
parent | c768bbfd72f02b47778da2a92d51748fbcb20029 (diff) | |
download | buildstream-df10c494945aacc7e1eaeef242c667d3a1045396.tar.gz |
source.py: Fix _set_ref() to not try to manually recalculate the cache
This was missed in the previous changes regarding caching
Diffstat (limited to 'buildstream')
-rw-r--r-- | buildstream/source.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/buildstream/source.py b/buildstream/source.py index f2fefb02b..5c7c27253 100644 --- a/buildstream/source.py +++ b/buildstream/source.py @@ -207,7 +207,6 @@ class Source(Plugin): # but we're mostly concerned about simple strings anyway. if current_ref != ref: self.set_ref(ref, node) - self._get_consistency(recalculate=True) changed = True return changed |