From 3e0c48d80b123649331633b96abb1abca00ca294 Mon Sep 17 00:00:00 2001 From: slaptrix <59545092+slaptrix@users.noreply.github.com> Date: Mon, 5 Jun 2023 13:53:42 +0200 Subject: [PATCH] Update garb_config.cpp Added semicolon to line 146 to fix "More than one value for key 'gcs.fc_singele_primary' at 'gcs.fc_single_primary=yes base_dir=...' in parameter list." error. --- garb/garb_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garb/garb_config.cpp b/garb/garb_config.cpp index ec7650a56..6eb15f6c8 100644 --- a/garb/garb_config.cpp +++ b/garb/garb_config.cpp @@ -143,7 +143,7 @@ Config::Config (int argc, char* argv[]) strip_quotes(cfg_); if (options_.length() > 0) options_ += "; "; - options_ += "gcs.fc_limit=9999999; gcs.fc_factor=1.0; gcs.fc_single_primary=yes"; + options_ += "gcs.fc_limit=9999999; gcs.fc_factor=1.0; gcs.fc_single_primary=yes;"; if (!workdir_.empty()) { options_ += " base_dir=" + workdir_ + ";";