summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 809a897)
raw | patch | inline | side by side (parent: 809a897)
author | root <root@sub.americas.sgi.com> | |
Wed, 20 May 2015 14:38:23 +0000 (09:38 -0500) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 26 May 2015 12:13:20 +0000 (14:13 +0200) |
src/write_redis.c | patch | blob | history |
diff --git a/src/write_redis.c b/src/write_redis.c
index 40f9074b0630be90fcf18bbfcec7dcc434d42b18..1e7281cb3243d64d725dbb42a8db6a552b042ce2 100644 (file)
--- a/src/write_redis.c
+++ b/src/write_redis.c
if (node->conn == NULL)
{
node->conn = redisConnectWithTimeout ((char *)node->host, node->port, node->timeout);
- if (node->conn == NULL)
+ if (node->conn != NULL && node->conn->err)
{
- ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed.",
+ ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed: %s",
(node->host != NULL) ? node->host : "localhost",
- (node->port != 0) ? node->port : 6379);
+ (node->port != 0) ? node->port : 6379,
+ node->conn->errstr);
pthread_mutex_unlock (&node->lock);
return (-1);
}