diff options
author | Jürg Billeter <j@bitron.ch> | 2020-07-01 13:00:01 +0200 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2020-08-13 09:24:43 +0000 |
commit | 70a5868259e3287ec02f4ed354b368896800dab3 (patch) | |
tree | 970a37c616809b7673811722d625b58bc406afd3 /src | |
parent | 2587fc40f4080f396822624beb1b9e730997ef31 (diff) | |
download | buildstream-70a5868259e3287ec02f4ed354b368896800dab3.tar.gz |
Remove unused BaseCache._spec_error
Diffstat (limited to 'src')
-rw-r--r-- | src/buildstream/_artifactcache.py | 1 | ||||
-rw-r--r-- | src/buildstream/_basecache.py | 1 | ||||
-rw-r--r-- | src/buildstream/_sourcecache.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/buildstream/_artifactcache.py b/src/buildstream/_artifactcache.py index 46fc5fbfb..1d77743dc 100644 --- a/src/buildstream/_artifactcache.py +++ b/src/buildstream/_artifactcache.py @@ -137,7 +137,6 @@ class ArtifactRemote(BaseRemote): class ArtifactCache(BaseCache): spec_name = "artifact_cache_specs" - spec_error = ArtifactError config_node_name = "artifacts" index_remote_class = ArtifactRemote diff --git a/src/buildstream/_basecache.py b/src/buildstream/_basecache.py index 91eae6ae4..eb8c98a3e 100644 --- a/src/buildstream/_basecache.py +++ b/src/buildstream/_basecache.py @@ -42,7 +42,6 @@ class BaseCache: # None of these should ever be called in the base class, but this appeases # pylint to some degree spec_name = None # type: str - spec_error = None # type: Type[BstError] config_node_name = None # type: str index_remote_class = None # type: Type[BaseRemote] storage_remote_class = CASRemote # type: Type[BaseRemote] diff --git a/src/buildstream/_sourcecache.py b/src/buildstream/_sourcecache.py index dcde0b426..aa6530ee5 100644 --- a/src/buildstream/_sourcecache.py +++ b/src/buildstream/_sourcecache.py @@ -122,7 +122,6 @@ class SourceRemote(BaseRemote): class SourceCache(BaseCache): spec_name = "source_cache_specs" - spec_error = SourceCacheError config_node_name = "source-caches" index_remote_class = SourceRemote |