From 99e90918a4fe5dfac1fe0edbf0e9a3b82b0d8eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Wed, 26 Sep 2018 10:15:49 +0100 Subject: _artifactcache/casserver.py: Use Context for artifact cache creation --- buildstream/_artifactcache/casserver.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/buildstream/_artifactcache/casserver.py b/buildstream/_artifactcache/casserver.py index d833878d5..b51572755 100644 --- a/buildstream/_artifactcache/casserver.py +++ b/buildstream/_artifactcache/casserver.py @@ -35,8 +35,6 @@ from .._protos.buildstream.v2 import buildstream_pb2, buildstream_pb2_grpc from .._exceptions import ArtifactError from .._context import Context -from .cascache import CASCache - # The default limit for gRPC messages is 4 MiB. # Limit payload to 1 MiB to leave sufficient headroom for metadata. @@ -60,7 +58,7 @@ def create_server(repo, *, enable_push): context = Context() context.artifactdir = os.path.abspath(repo) - artifactcache = CASCache(context) + artifactcache = context.artifactcache # Use max_workers default from Python 3.5+ max_workers = (os.cpu_count() or 1) * 5 -- cgit v1.2.1