Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/logstash/outputs/redis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
# TODO set required true
config :key, :validate => :string, :required => false

# Either list or channel. If `redis_type` is list, then we will set
# RPUSH to key. If `redis_type` is channel, then we will PUBLISH to `key`.
# Either list or channel. If `data_type` is list, then we will set
# RPUSH to key. If `data_type` is channel, then we will PUBLISH to `key`.
# TODO set required true
config :data_type, :validate => [ "list", "channel" ], :required => false

Expand Down