Remove needless --use-v1-config option

This commit is contained in:
uu59 2015-11-30 11:45:01 +09:00
parent 1d8f5090b7
commit 9002b11926
2 changed files with 0 additions and 2 deletions

View File

@ -50,7 +50,6 @@ class Fluentd
def options_to_argv(opts = {})
argv = ""
argv << " --use-v1-config"
argv << " -c #{opts[:config_file] || config_file}"
argv << " -d #{opts[:pid_file] || pid_file}"
argv << " -o #{opts[:log_file] || log_file}"

View File

@ -18,7 +18,6 @@ describe Fluentd::Agent do
it { should include("-c #{instance.config_file}") }
it { should include("-d #{instance.pid_file}") }
it { should include("-o #{instance.log_file}") }
it { should include("--use-v1-config") }
end
describe "#start" do