diff options
| author | Stefan Boberg <[email protected]> | 2022-06-10 15:00:12 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2022-06-10 15:00:12 +0200 |
| commit | 36c5ce758788ce5edda2bff474314dc1836aca22 (patch) | |
| tree | 682106f2a2d617f56f1132d83b27cdca6545abed /zenstore/gc.cpp | |
| parent | sentry: added logging of sentry_init error code (diff) | |
| download | zen-36c5ce758788ce5edda2bff474314dc1836aca22.tar.xz zen-36c5ce758788ce5edda2bff474314dc1836aca22.zip | |
gc: improved message indicating no GC is scheduled
Diffstat (limited to 'zenstore/gc.cpp')
| -rw-r--r-- | zenstore/gc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/gc.cpp b/zenstore/gc.cpp index dfa3d54ab..bb03b9751 100644 --- a/zenstore/gc.cpp +++ b/zenstore/gc.cpp @@ -625,7 +625,7 @@ GcScheduler::SchedulerThread() NiceBytes(Space.Total), m_Config.Interval.count() ? fmt::format("{} until next GC", NiceTimeSpanMs(uint64_t(std::chrono::milliseconds(RemaingTime).count()))) - : std::string("next scheduled GC no set")); + : std::string("no GC scheduled")); // TODO: Trigger GC if max disk usage water mark is reached |