Skip to content

Commit

Permalink
Merge remote-tracking branch 'antirez/2.6' into rdio-2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yosh committed May 2, 2012
2 parents cb5bc27 + 0f07781 commit 4f71290
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions 00-RELEASENOTES
Expand Up @@ -32,6 +32,15 @@ Also the following redis.conf and CONFIG GET / SET parameters changed name:
CHANGELOG
---------

What's new in Redis 2.5.8 (aka 2.6 Release Candidate 2)
=======================================================

UPGRADE URGENCY: high for all the users of the KEYS command, otherwise low.

* [BUGFIX] Fix for KEYS command: if the DB contains keys with expires the KEYS
command may return the wrong output, having duplicated or missing
keys. See issue #487 and #488 on github for details.

What's new in Redis 2.5.7 (aka 2.6 Release Candidate 1)
=======================================================

Expand Down
2 changes: 1 addition & 1 deletion src/version.h
@@ -1 +1 @@
#define REDIS_VERSION "2.5.7"
#define REDIS_VERSION "2.5.8"
8 changes: 6 additions & 2 deletions tests/unit/aofrw.tcl
Expand Up @@ -7,8 +7,12 @@ start_server {tags {"aofrw"}} {
r bgrewriteaof
r config set appendonly no
r exec
set result [exec tail -n1 < [srv 0 stdout] ]
} {*Killing*AOF*child*}
wait_for_condition 50 100 {
[string match {*Killing*AOF*child*} [exec tail -n5 < [srv 0 stdout]]]
} else {
fail "Can't find 'Killing AOF child' into recent logs"
}
}

foreach d {string int} {
foreach e {ziplist linkedlist} {
Expand Down

0 comments on commit 4f71290

Please sign in to comment.