aboutsummaryrefslogtreecommitdiff
path: root/zenserver/config.cpp
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2021-12-09 13:28:11 +0100
committerPer Larsson <[email protected]>2021-12-09 13:28:11 +0100
commit8830b3011e07eacfd90d35727cfe65bb5ea5fce4 (patch)
treed345532a85aa08a7afad784ff83e00f4dc264837 /zenserver/config.cpp
parentFixed bug in z$ garbage collection. (diff)
downloadzen-8830b3011e07eacfd90d35727cfe65bb5ea5fce4.tar.xz
zen-8830b3011e07eacfd90d35727cfe65bb5ea5fce4.zip
GC default off.
Diffstat (limited to 'zenserver/config.cpp')
-rw-r--r--zenserver/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zenserver/config.cpp b/zenserver/config.cpp
index 49240d176..1cbb84452 100644
--- a/zenserver/config.cpp
+++ b/zenserver/config.cpp
@@ -274,7 +274,7 @@ ParseCliOptions(int argc, char* argv[], ZenServerOptions& ServerOptions)
"",
"gc-enabled",
"Whether garbage collection is enabled or not.",
- cxxopts::value<bool>(ServerOptions.GcConfig.Enabled)->default_value("true"),
+ cxxopts::value<bool>(ServerOptions.GcConfig.Enabled)->default_value("false"),
"");
options.add_option("gc",