File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
2121 default :codec , "json"
2222
2323 # Name is used for logging in case there are multiple instances.
24- # TODO: delete
2524 config :name , :validate => :string , :default => 'default' ,
2625 :deprecated => true
2726
@@ -52,17 +51,14 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
5251
5352 # The name of the Redis queue (we'll use RPUSH on this). Dynamic names are
5453 # valid here, for example `logstash-%{type}`
55- # TODO: delete
5654 config :queue , :validate => :string , :deprecated => true
5755
5856 # The name of a Redis list or channel. Dynamic names are
5957 # valid here, for example `logstash-%{type}`.
60- # TODO set required true
6158 config :key , :validate => :string , :required => false
6259
6360 # Either list or channel. If `redis_type` is list, then we will set
6461 # RPUSH to key. If `redis_type` is channel, then we will PUBLISH to `key`.
65- # TODO set required true
6662 config :data_type , :validate => [ "list" , "channel" ] , :required => false
6763
6864 # Set to true if you want Redis to batch up values and send 1 RPUSH command
You can’t perform that action at this time.
0 commit comments