aboutsummaryrefslogtreecommitdiff
path: root/zenserver/zenserver.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-05-05 10:49:35 +0200
committerDan Engelbrecht <[email protected]>2022-05-05 10:49:35 +0200
commitd484acb3d32662c9e1faf9a99efad543f607732a (patch)
treee179d7ff6176b5aa6536402d0dd0302015e5889f /zenserver/zenserver.cpp
parentmac/linux build fix (diff)
downloadzen-d484acb3d32662c9e1faf9a99efad543f607732a.tar.xz
zen-d484acb3d32662c9e1faf9a99efad543f607732a.zip
revert back constructor order for ZenCacheStore
Diffstat (limited to 'zenserver/zenserver.cpp')
-rw-r--r--zenserver/zenserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/zenserver.cpp b/zenserver/zenserver.cpp
index e572e6a49..abaec888a 100644
--- a/zenserver/zenserver.cpp
+++ b/zenserver/zenserver.cpp
@@ -755,7 +755,7 @@ ZenServer::InitializeStructuredCache(const ZenServerOptions& ServerOptions)
using namespace std::literals;
ZEN_INFO("instantiating structured cache service");
- m_CacheStore = std::make_unique<ZenCacheStore>(m_DataRoot / "cache", m_CasGc);
+ m_CacheStore = std::make_unique<ZenCacheStore>(m_CasGc, m_DataRoot / "cache");
const ZenUpstreamCacheConfig& UpstreamConfig = ServerOptions.UpstreamCacheConfig;