diff options
author | Jürg Billeter <j@bitron.ch> | 2018-10-17 17:08:44 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2020-07-30 10:22:53 +0000 |
commit | 228c41bf68122e791a19f7f37d87a31e0cf440d6 (patch) | |
tree | 2429b755b23d8713ad96620f351bd24f8eefef8b /buildstream/_artifactcache/artifactcache.py | |
parent | 0fee511a240d4b49532f9d2c2c3cf9fe0baebf7b (diff) | |
download | buildstream-228c41bf68122e791a19f7f37d87a31e0cf440d6.tar.gz |
_artifactcache: Rename update_atime() to update_mtime()
os.utime() updates both, however, list_artifacts() sorts refs by mtime,
i.e., atime is irrelevant.
Diffstat (limited to 'buildstream/_artifactcache/artifactcache.py')
-rw-r--r-- | buildstream/_artifactcache/artifactcache.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/buildstream/_artifactcache/artifactcache.py b/buildstream/_artifactcache/artifactcache.py index 48fd32218..728819e81 100644 --- a/buildstream/_artifactcache/artifactcache.py +++ b/buildstream/_artifactcache/artifactcache.py @@ -256,7 +256,7 @@ class ArtifactCache(): self._required_elements.update(elements) # For the cache keys which were resolved so far, we bump - # the atime of them. + # the mtime of them. # # This is just in case we have concurrent instances of # BuildStream running with the same artifact cache, it will @@ -268,7 +268,7 @@ class ArtifactCache(): for key in (strong_key, weak_key): if key: try: - self.update_atime(key) + self.update_mtime(key) except ArtifactError: pass @@ -478,15 +478,15 @@ class ArtifactCache(): def preflight(self): pass - # update_atime() + # update_mtime() # - # Update the atime of an artifact. + # Update the mtime of an artifact. # # Args: # key (str): The key of the artifact. # - def update_atime(self, key): - raise ImplError("Cache '{kind}' does not implement contains()" + def update_mtime(self, key): + raise ImplError("Cache '{kind}' does not implement update_mtime()" .format(kind=type(self).__name__)) # initialize_remotes(): |