diff options
| author | Dan Engelbrecht <[email protected]> | 2024-04-22 22:52:15 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-04-22 22:52:15 +0200 |
| commit | 9ce219549ee85f74f9dc03a097e5098023d91b9e (patch) | |
| tree | d8c75ce36e000e3779806ba85e7a77f04176913a /src | |
| parent | InsertChunks for CAS store (#55) (diff) | |
| download | zen-9ce219549ee85f74f9dc03a097e5098023d91b9e.tar.xz zen-9ce219549ee85f74f9dc03a097e5098023d91b9e.zip | |
set gc-v2 as default (#56)
- Change: GCv2 is now the default option, use `--gc-v2=false` to fall back to GCv1
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenserver/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/config.cpp b/src/zenserver/config.cpp index af718633f..e33b6caf3 100644 --- a/src/zenserver/config.cpp +++ b/src/zenserver/config.cpp @@ -893,7 +893,7 @@ ParseCliOptions(int argc, char* argv[], ZenServerOptions& ServerOptions) "", "gc-v2", "Use V2 of GC implementation or not.", - cxxopts::value<bool>(ServerOptions.GcConfig.UseGCV2)->default_value("false"), + cxxopts::value<bool>(ServerOptions.GcConfig.UseGCV2)->default_value("true"), ""); options.add_option("gc", |