summaryrefslogtreecommitdiff
path: root/src/buildstream/_sourcecache.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2020-06-22 16:23:54 +0200
committerbst-marge-bot <marge-bot@buildstream.build>2020-08-13 09:24:43 +0000
commitdd315917a243c4353c53038e9517b439a88a8bf8 (patch)
treec6d47e0e641f2ac9ac8e1cf59819c1aa8c4d5490 /src/buildstream/_sourcecache.py
parent70a5868259e3287ec02f4ed354b368896800dab3 (diff)
downloadbuildstream-dd315917a243c4353c53038e9517b439a88a8bf8.tar.gz
Rename BaseCache to AssetCache
Diffstat (limited to 'src/buildstream/_sourcecache.py')
-rw-r--r--src/buildstream/_sourcecache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/_sourcecache.py b/src/buildstream/_sourcecache.py
index aa6530ee5..6ba7ec782 100644
--- a/src/buildstream/_sourcecache.py
+++ b/src/buildstream/_sourcecache.py
@@ -23,7 +23,7 @@ import grpc
from ._remote import BaseRemote
from ._cas.casremote import BlobNotFound
from .storage._casbaseddirectory import CasBasedDirectory
-from ._basecache import BaseCache
+from ._assetcache import AssetCache
from ._exceptions import CASError, CASRemoteError, SourceCacheError, RemoteError
from . import utils
from ._protos.buildstream.v2 import buildstream_pb2, buildstream_pb2_grpc, source_pb2, source_pb2_grpc
@@ -119,7 +119,7 @@ class SourceRemote(BaseRemote):
# Args:
# context (Context): The Buildstream context
#
-class SourceCache(BaseCache):
+class SourceCache(AssetCache):
spec_name = "source_cache_specs"
config_node_name = "source-caches"