diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-09-08 18:27:13 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-09-10 15:56:12 +0900 |
commit | 2c898796940275073c5c0b1cc12ca3054a98006e (patch) | |
tree | 7b0051ee447b27f7c722feeb84a219e5670adb44 /buildstream | |
parent | 879d511732224d0789c35e2c0a8707b7096b3379 (diff) | |
download | buildstream-2c898796940275073c5c0b1cc12ca3054a98006e.tar.gz |
_artifactcache/artifactcache.py: Removing unused variable.
The ArtifactCache._local variable used to exist in order to
use a special hack to allow absolute paths to a remote artifact
cache, this was all for the purpose of testing.
This has all gone away with the introduction of CAS, leaving behind
a stale variable.
Diffstat (limited to 'buildstream')
-rw-r--r-- | buildstream/_artifactcache/artifactcache.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/buildstream/_artifactcache/artifactcache.py b/buildstream/_artifactcache/artifactcache.py index d5a68daba..28c8cc606 100644 --- a/buildstream/_artifactcache/artifactcache.py +++ b/buildstream/_artifactcache/artifactcache.py @@ -90,7 +90,6 @@ class ArtifactCache(): self.global_remote_specs = [] self.project_remote_specs = {} - self._local = False self.cache_size = None self.cache_quota = None self.cache_lower_threshold = None |