Skip to content

Commit 263fbf4

Browse files
committed
Please consider the following formatting changes
1 parent 7f354f4 commit 263fbf4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Framework/Core/src/DeviceSpecHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1758,7 +1758,7 @@ boost::program_options::options_description DeviceSpecHelpers::getForwardedDevic
17581758
("network-interface", bpo::value<std::string>(), "network interface to which to bind tpc fmq ports without specified address") //
17591759
("early-forward-policy", bpo::value<EarlyForwardPolicy>()->default_value(EarlyForwardPolicy::NEVER), "when to forward early the messages: never, noraw, always") //
17601760
("configuration,cfg", bpo::value<std::string>(), "configuration connection string") //
1761-
("workflow-plugin", bpo::value<std::string>(), "workflow configuration plugin") //
1761+
("workflow-plugin", bpo::value<std::string>(), "workflow configuration plugin") //
17621762
("driver-client-backend", bpo::value<std::string>(), "driver connection string") //
17631763
("monitoring-backend", bpo::value<std::string>(), "monitoring connection string") //
17641764
("dpl-stats-min-online-publishing-interval", bpo::value<std::string>(), "minimum flushing interval for online metrics (in s)") //

Framework/Core/src/runDataProcessing.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ std::string spawnDevice(uv_loop_t* loop,
791791
execution.args.push_back(nullptr);
792792
}
793793
LOGP(detail, "Child runs {} in a separate executable {} from the current one ({}). Using execvp, resources will not be shared.",
794-
execution.plugin, execution.args[0], driverInfo.argv[0]);
794+
execution.plugin, execution.args[0], driverInfo.argv[0]);
795795
execvp(execution.args[0], execution.args.data());
796796
}
797797
LOG(info) << "Child device uses plugins. Loading " << execution.plugin << ".";
@@ -1109,7 +1109,7 @@ int doChild(int argc, char** argv, ServiceRegistry& serviceRegistry,
11091109
("data-processing-timeout", bpo::value<std::string>()->default_value(defaultDataProcessingTimeout), "how many second to wait before stopping data processing and allowing data calibration") //
11101110
("timeframes-rate-limit", bpo::value<std::string>()->default_value("0"), "how many timeframe can be in fly at the same moment (0 disables)") //
11111111
("configuration,cfg", bpo::value<std::string>()->default_value("command-line"), "configuration backend") //
1112-
("workflow-plugin", bpo::value<std::string>()->default_value(""), "workflow plugin to use") //
1112+
("workflow-plugin", bpo::value<std::string>()->default_value(""), "workflow plugin to use") //
11131113
("infologger-mode", bpo::value<std::string>()->default_value(defaultInfologgerMode), "O2_INFOLOGGER_MODE override");
11141114
r.fConfig.AddToCmdLineOptions(optsDesc, true);
11151115
});

0 commit comments

Comments
 (0)