aboutsummaryrefslogtreecommitdiff
path: root/zenserver/compute/function.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver/compute/function.h')
-rw-r--r--zenserver/compute/function.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/zenserver/compute/function.h b/zenserver/compute/function.h
index efabe96ee..650cee757 100644
--- a/zenserver/compute/function.h
+++ b/zenserver/compute/function.h
@@ -20,7 +20,6 @@
namespace zen {
-class CasStore;
class CidStore;
class UpstreamApply;
class CloudCacheClient;
@@ -35,8 +34,7 @@ struct CloudCacheClientOptions;
class HttpFunctionService : public HttpService
{
public:
- HttpFunctionService(CasStore& Store,
- CidStore& InCidStore,
+ HttpFunctionService(CidStore& InCidStore,
const CloudCacheClientOptions& ComputeOptions,
const CloudCacheClientOptions& StorageOptions,
const UpstreamAuthConfig& ComputeAuthConfig,
@@ -52,7 +50,6 @@ private:
spdlog::logger& Log() { return m_Log; }
spdlog::logger& m_Log;
HttpRequestRouter m_Router;
- CasStore& m_CasStore;
CidStore& m_CidStore;
std::unique_ptr<UpstreamApply> m_UpstreamApply;