You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix core: print usage and help correctly in DaemonRun, allow --config-vars
* Fixed an issue where required options would not allow to call the service binary with `-h` flag.
* Allowed passing `--config-vars` option to service binary as an alternative to `--config_vars`.
commit_hash:de7861a072966d468ddc6d9fdce820992050989f
("print-dynamic-config-defaults", "print JSON object with dynamic config defaults")
38
-
("config_vars", po::value<std::string>(), "path to config_vars.yaml; if set, config_vars in config.yaml are ignored")
39
-
("config_vars_override", po::value<std::string>(), "path to an additional config_vars.yaml, which overrides vars of config_vars.yaml")
40
+
("config-vars,config_vars", po::value<std::string>(), "path to config_vars.yaml; if set, config_vars in config.yaml are ignored")
41
+
("config-vars-override,config_vars_override", po::value<std::string>(), "path to an additional config_vars.yaml, which overrides vars of config_vars.yaml")
40
42
;
41
43
// clang-format on
42
44
return desc;
@@ -52,15 +54,21 @@ int DaemonMain(const int argc, const char* const argv[], const components::Compo
0 commit comments