From f5273c981f66834d70db680cff5deb47fd8d1274 Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Thu, 5 May 2022 11:01:44 +0200 Subject: reverted unnecessary changes --- zenserver/cache/structuredcache.cpp | 4 ++-- zenserver/cache/structuredcache.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zenserver/cache/structuredcache.cpp b/zenserver/cache/structuredcache.cpp index 69ee32bd6..0f16f6785 100644 --- a/zenserver/cache/structuredcache.cpp +++ b/zenserver/cache/structuredcache.cpp @@ -72,13 +72,13 @@ struct PutRequestData ////////////////////////////////////////////////////////////////////////// -HttpStructuredCacheService::HttpStructuredCacheService(ZenCacheStore& CacheStore, +HttpStructuredCacheService::HttpStructuredCacheService(ZenCacheStore& InCacheStore, CidStore& InCidStore, HttpStatsService& StatsService, HttpStatusService& StatusService, UpstreamCache& UpstreamCache) : m_Log(logging::Get("cache")) -, m_CacheStore(CacheStore) +, m_CacheStore(InCacheStore) , m_StatsService(StatsService) , m_StatusService(StatusService) , m_CidStore(InCidStore) diff --git a/zenserver/cache/structuredcache.h b/zenserver/cache/structuredcache.h index c41afef12..00c4260aa 100644 --- a/zenserver/cache/structuredcache.h +++ b/zenserver/cache/structuredcache.h @@ -64,7 +64,7 @@ namespace cache::detail { class HttpStructuredCacheService : public HttpService, public IHttpStatsProvider, public IHttpStatusProvider { public: - HttpStructuredCacheService(ZenCacheStore& CacheStore, + HttpStructuredCacheService(ZenCacheStore& InCacheStore, CidStore& InCidStore, HttpStatsService& StatsService, HttpStatusService& StatusService, -- cgit v1.2.3