diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenserver/config.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 92849ab44..461ff68b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## +- Change: GCv2 is now the default option, use `--gc-v2=false` to fall back to GCv1 - Bugfix: Correctly calculate size freed/data moved from blocks in GCv2 - Feature: `zen up` command improvements - --`port` allows you to specify a base port when starting an instance 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", |