From 1d8f5090b77a1e2326f3f3218845ee0127d2a858 Mon Sep 17 00:00:00 2001 From: ReadmeCritic Date: Fri, 27 Nov 2015 19:58:25 -0800 Subject: [PATCH 1/2] Update README URLs based on HTTP redirects --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38864d2..a833339 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Gem Version](https://badge.fury.io/rb/fluentd-ui.svg)](http://badge.fury.io/rb/fluentd-ui) [![Code Climate](https://codeclimate.com/github/fluent/fluentd-ui/badges/gpa.svg)](https://codeclimate.com/github/fluent/fluentd-ui) -fluentd-ui is a browser-based [fluentd](http://fluentd.org/) and [td-agent](http://docs.treasuredata.com/articles/td-agent) manager that supports following operations. +fluentd-ui is a browser-based [fluentd](http://www.fluentd.org) and [td-agent](https://docs.treasuredata.com/articles/td-agent) manager that supports following operations. * Install, uninstall, and upgrade Fluentd plugins * start/stop/restart fluentd process @@ -28,7 +28,7 @@ And some additional packages (Debian / Ubuntu) ## Development - $ git clone https://github.com/treasure-data/fluentd-ui + $ git clone https://github.com/fluent/fluentd-ui $ cd fluentd-ui $ bundle install $ bundle exec rails s From 9002b119265578cf60e00e60db46c1ec91dd47e8 Mon Sep 17 00:00:00 2001 From: uu59 Date: Mon, 30 Nov 2015 11:45:01 +0900 Subject: [PATCH 2/2] Remove needless --use-v1-config option --- app/models/fluentd/agent/process_operation.rb | 1 - spec/models/fluentd/agent_spec.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/app/models/fluentd/agent/process_operation.rb b/app/models/fluentd/agent/process_operation.rb index 45eb581..00c4003 100644 --- a/app/models/fluentd/agent/process_operation.rb +++ b/app/models/fluentd/agent/process_operation.rb @@ -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}" diff --git a/spec/models/fluentd/agent_spec.rb b/spec/models/fluentd/agent_spec.rb index 0baef63..eab0d69 100644 --- a/spec/models/fluentd/agent_spec.rb +++ b/spec/models/fluentd/agent_spec.rb @@ -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