From edb2ea0cae30aeac74d1d48ab9754754f010c818 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 21 May 2021 20:43:36 +0200 Subject: Renamed CasBlobFile -> BasicFile --- zenserver/projectstore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zenserver/projectstore.cpp') diff --git a/zenserver/projectstore.cpp b/zenserver/projectstore.cpp index e30742e33..c99fa4232 100644 --- a/zenserver/projectstore.cpp +++ b/zenserver/projectstore.cpp @@ -229,7 +229,7 @@ private: std::filesystem::path m_OplogStoragePath; RwLock m_RwLock; TCasLogFile m_Oplog; - CasBlobFile m_OpBlobs; + BasicFile m_OpBlobs; std::atomic m_NextOpsOffset{0}; uint64_t m_OpsAlign = 32; std::atomic m_MaxLsn{0}; @@ -463,7 +463,7 @@ ProjectStore::Project::Read() spdlog::info("reading config for project '{}' from {}", Identifier, ProjectStateFilePath); - CasBlobFile Blob; + BasicFile Blob; Blob.Open(ProjectStateFilePath, false); IoBuffer Obj = Blob.ReadAll(); @@ -504,7 +504,7 @@ ProjectStore::Project::Write() spdlog::info("persisting config for project '{}' to {}", Identifier, ProjectStateFilePath); - CasBlobFile Blob; + BasicFile Blob; Blob.Open(ProjectStateFilePath, true); Blob.Write(Mem.Data(), Mem.Size(), 0); Blob.Flush(); -- cgit v1.2.3