aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-05-05 11:01:44 +0200
committerDan Engelbrecht <[email protected]>2022-05-05 11:01:44 +0200
commitf5273c981f66834d70db680cff5deb47fd8d1274 (patch)
treed9d3e7a9f1beb0497c3417f7c21d52ccd3d9174c
parentrevert back constructor order for ZenCacheStore (diff)
downloadzen-f5273c981f66834d70db680cff5deb47fd8d1274.tar.xz
zen-f5273c981f66834d70db680cff5deb47fd8d1274.zip
reverted unnecessary changes
-rw-r--r--zenserver/cache/structuredcache.cpp4
-rw-r--r--zenserver/cache/structuredcache.h2
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,