This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch jennis/introduce_artifact_delete in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit e8573a6ca3d02ba678a4d4acd2eee7851e6ac201 Author: James Ennis <[email protected]> AuthorDate: Tue Mar 5 16:01:01 2019 +0000 _artifactelement.py: Add _get_cache_key() override --- buildstream/_artifactelement.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildstream/_artifactelement.py b/buildstream/_artifactelement.py index a88e83a..a7915eb 100644 --- a/buildstream/_artifactelement.py +++ b/buildstream/_artifactelement.py @@ -59,6 +59,10 @@ class ArtifactElement(Element): def _calculate_cache_key(self, dependencies=None): return self._key + # Override Element._get_cache_key() + def _get_cache_key(self, strength=None): + return self._key + # verify_artifact_ref() #
