From b1f2b1ba5dd397c4713ff6e423573e1b47285f59 Mon Sep 17 00:00:00 2001 From: Suyog Rao Date: Mon, 21 Sep 2015 22:40:44 -0700 Subject: [PATCH] Update to remove deprecated options --- lib/logstash/inputs/redis.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/logstash/inputs/redis.rb b/lib/logstash/inputs/redis.rb index ef0180b..be45223 100644 --- a/lib/logstash/inputs/redis.rb +++ b/lib/logstash/inputs/redis.rb @@ -22,10 +22,6 @@ module LogStash module Inputs class Redis < LogStash::Inputs::Threadable default :codec, "json" - # The `name` configuration is used for logging in case there are multiple instances. - # This feature has no real function and will be removed in future versions. - config :name, :validate => :string, :default => "default", :deprecated => true - # The hostname of your Redis server. config :host, :validate => :string, :default => "127.0.0.1" @@ -41,10 +37,6 @@ module LogStash module Inputs class Redis < LogStash::Inputs::Threadable # Password to authenticate with. There is no authentication by default. config :password, :validate => :password - # The name of the Redis queue (we'll use BLPOP against this). - # TODO: remove soon. - config :queue, :validate => :string, :deprecated => true - # The name of a Redis list or channel. # TODO: change required to true config :key, :validate => :string, :required => false