summaryrefslogtreecommitdiff
path: root/src/buildstream/_artifactcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_artifactcache.py')
-rw-r--r--src/buildstream/_artifactcache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/_artifactcache.py b/src/buildstream/_artifactcache.py
index 1d77743dc..f310ea615 100644
--- a/src/buildstream/_artifactcache.py
+++ b/src/buildstream/_artifactcache.py
@@ -21,7 +21,7 @@
import os
import grpc
-from ._basecache import BaseCache
+from ._assetcache import AssetCache
from ._cas.casremote import BlobNotFound
from ._exceptions import ArtifactError, CASError, CacheError, CASRemoteError, RemoteError
from ._protos.buildstream.v2 import buildstream_pb2, buildstream_pb2_grpc, artifact_pb2, artifact_pb2_grpc
@@ -134,7 +134,7 @@ class ArtifactRemote(BaseRemote):
# Args:
# context (Context): The BuildStream context
#
-class ArtifactCache(BaseCache):
+class ArtifactCache(AssetCache):
spec_name = "artifact_cache_specs"
config_node_name = "artifacts"