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
21
21
default :codec , "json"
22
22
23
23
# Name is used for logging in case there are multiple instances.
24
- # TODO: delete
25
24
config :name , :validate => :string , :default => 'default' ,
26
25
:deprecated => true
27
26
@@ -52,17 +51,14 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
52
51
53
52
# The name of the Redis queue (we'll use RPUSH on this). Dynamic names are
54
53
# valid here, for example `logstash-%{type}`
55
- # TODO: delete
56
54
config :queue , :validate => :string , :deprecated => true
57
55
58
56
# The name of a Redis list or channel. Dynamic names are
59
57
# valid here, for example `logstash-%{type}`.
60
- # TODO set required true
61
58
config :key , :validate => :string , :required => false
62
59
63
60
# Either list or channel. If `redis_type` is list, then we will set
64
61
# RPUSH to key. If `redis_type` is channel, then we will PUBLISH to `key`.
65
- # TODO set required true
66
62
config :data_type , :validate => [ "list" , "channel" ] , :required => false
67
63
68
64
# 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