From c4558223a83239ea4a25be7ec13cff1fe71d3a61 Mon Sep 17 00:00:00 2001 From: Tudor Golubenco Date: Fri, 1 Apr 2016 11:22:05 +0200 Subject: [PATCH] Remove Redis deprecation warning --- libbeat/outputs/redis/redis.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libbeat/outputs/redis/redis.go b/libbeat/outputs/redis/redis.go index 5758a73ea05..4c4deb2fc4e 100644 --- a/libbeat/outputs/redis/redis.go +++ b/libbeat/outputs/redis/redis.go @@ -1,6 +1,3 @@ -//@deprecated: Starting with version 1.0.0-beta4 the Redis Output is deprecated as -// it's replaced by the Logstash Output that has support for Redis Output plugin. - package redis import ( @@ -69,8 +66,6 @@ type message struct { func (out *redisOutput) Init(config outputs.MothershipConfig, topology_expire int) error { - logp.Warn("Redis Output is deprecated. Please use the Redis Output Plugin from Logstash instead.") - out.Hostname = fmt.Sprintf("%s:%d", config.Host, config.Port) if config.Password != "" {