Merge branch '2.8antirez' into 2.8
This commit is contained in:
@@ -14,6 +14,16 @@ HIGH: There is a critical bug that may affect a subset of users. Upgrade!
|
||||
CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP.
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
--[ Redis 2.8.17 ] Release date: 19 Sep 2014
|
||||
|
||||
# UPGRADE URGENCY: HIGH for Redis Sentinel.
|
||||
LOW for Redis Server (unmodified compared to 2.8.16).
|
||||
|
||||
* [FIX] Resolved a memory leak in the hiredis library causing a memory leak
|
||||
in Redis Sentinel when a monitored instance or another Sentinel is
|
||||
unavailable. Every reconnection attempt will leak a small amount of
|
||||
memory, but in the long run the process can reach a considerable size.
|
||||
|
||||
--[ Redis 2.8.16 ] Release date: 16 Sep 2014
|
||||
|
||||
# UPGRADE URGENCY: HIGH for Redis if you are using 2.8.15 + AOF.
|
||||
|
||||
Vendored
+1
@@ -363,6 +363,7 @@ static int _redisContextConnectTcp(redisContext *c, const char *addr, int port,
|
||||
break;
|
||||
}
|
||||
}
|
||||
freeaddrinfo(bservinfo);
|
||||
if (!bound) {
|
||||
char buf[128];
|
||||
snprintf(buf,sizeof(buf),"Can't bind socket: %s",strerror(errno));
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
#define REDIS_VERSION "2.8.16"
|
||||
#define REDIS_VERSION "2.8.17"
|
||||
|
||||
Reference in New Issue
Block a user