Skip to content

Commit 484f6a3

Browse files
author
Suyog Rao
committed
Update redis.rb
1 parent 25a5039 commit 484f6a3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/logstash/outputs/redis.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)