From 51f8b186803292f111011d04d5291deb374dc34c Mon Sep 17 00:00:00 2001 From: Oliver Reiche Date: Thu, 6 Oct 2022 12:18:25 +0200 Subject: LocalTreeMap: Prevent tree objects from being stored ... to align with the original idea of caching a flat list of blob objects, without the need to recursively traverse any trees. Consequently, we cannot create any map entry in places where we do not have all sub-tree entries at hand (e.g., LocalAPI, BazelAPI, BazelResponse). --- src/buildtool/execution_api/remote/bazel/bazel_action.hpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/buildtool/execution_api/remote/bazel/bazel_action.hpp') diff --git a/src/buildtool/execution_api/remote/bazel/bazel_action.hpp b/src/buildtool/execution_api/remote/bazel/bazel_action.hpp index 7eb9a9e0..84922a86 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_action.hpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_action.hpp @@ -26,7 +26,6 @@ class BazelAction final : public IExecutionAction { private: std::shared_ptr network_; - std::shared_ptr tree_map_; bazel_re::Digest const root_digest_; std::vector const cmdline_; std::vector output_files_; @@ -37,7 +36,6 @@ class BazelAction final : public IExecutionAction { std::chrono::milliseconds timeout_{kDefaultTimeout}; BazelAction(std::shared_ptr network, - std::shared_ptr tree_map, bazel_re::Digest root_digest, std::vector command, std::vector output_files, -- cgit v1.2.3