diff options
Diffstat (limited to 'src/zenserver/zenserver.cpp')
| -rw-r--r-- | src/zenserver/zenserver.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp index ce5e4e964..c4a4d1d41 100644 --- a/src/zenserver/zenserver.cpp +++ b/src/zenserver/zenserver.cpp @@ -427,7 +427,7 @@ public: { // This is disabled for now, awaiting better scheduling // - // Scrub(); + // ScrubStorage(); if (m_ProcessMonitor.IsActive()) { @@ -594,15 +594,15 @@ public: } } - void Scrub() + void ScrubStorage() { Stopwatch Timer; ZEN_INFO("Storage validation STARTING"); ScrubContext Ctx; - m_CidStore->Scrub(Ctx); - m_ProjectStore->Scrub(Ctx); - m_StructuredCacheService->Scrub(Ctx); + m_CidStore->ScrubStorage(Ctx); + m_ProjectStore->ScrubStorage(Ctx); + m_StructuredCacheService->ScrubStorage(Ctx); const uint64_t ElapsedTimeMs = Timer.GetElapsedTimeMs(); |