From e759a99b8e9d250fe035bcb8c8abaabdc7ae3028 Mon Sep 17 00:00:00 2001 From: Daniel Burke Date: Tue, 19 Apr 2016 11:36:01 +0100 Subject: [PATCH] Update redis.rb Updated documentation - section on data_type referred to redis_type rather than data_type --- lib/logstash/outputs/redis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logstash/outputs/redis.rb b/lib/logstash/outputs/redis.rb index da1d1b4..123901d 100644 --- a/lib/logstash/outputs/redis.rb +++ b/lib/logstash/outputs/redis.rb @@ -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