diff options
| author | Per Larsson <[email protected]> | 2021-12-09 13:28:11 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-12-09 13:28:11 +0100 |
| commit | 8830b3011e07eacfd90d35727cfe65bb5ea5fce4 (patch) | |
| tree | d345532a85aa08a7afad784ff83e00f4dc264837 /zenstore/include | |
| parent | Fixed bug in z$ garbage collection. (diff) | |
| download | zen-8830b3011e07eacfd90d35727cfe65bb5ea5fce4.tar.xz zen-8830b3011e07eacfd90d35727cfe65bb5ea5fce4.zip | |
GC default off.
Diffstat (limited to 'zenstore/include')
| -rw-r--r-- | zenstore/include/zenstore/gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/include/zenstore/gc.h b/zenstore/include/zenstore/gc.h index b30c70b1f..2ec318e9a 100644 --- a/zenstore/include/zenstore/gc.h +++ b/zenstore/include/zenstore/gc.h @@ -151,7 +151,7 @@ struct GcSchedulerConfig { std::filesystem::path RootDirectory; std::chrono::seconds Interval{3600}; - bool Enabled = true; + bool Enabled = false; }; class GcScheduler |