From b1e36b550ca1804f1e88bbb662c3fa47072ffd6d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 13 Apr 2016 16:30:22 +0200 Subject: [PATCH] max-output-size -> max_output_size To be consistent with other Catalyst/Hydra config option names. --- src/hydra-queue-runner/hydra-queue-runner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hydra-queue-runner/hydra-queue-runner.cc b/src/hydra-queue-runner/hydra-queue-runner.cc index a79b0942..0944c6e8 100644 --- a/src/hydra-queue-runner/hydra-queue-runner.cc +++ b/src/hydra-queue-runner/hydra-queue-runner.cc @@ -42,7 +42,7 @@ State::State() } { - std::string s = hydraConfig["max-output-size"]; + std::string s = hydraConfig["max_output_size"]; if (s != "") string2Int(s, maxOutputSize); }