]> git.saurik.com Git - redis.git/commitdiff
latest fix reverted, there is some problem reported by the CI test
authorantirez <antirez@gmail.com>
Wed, 8 Sep 2010 11:45:51 +0000 (13:45 +0200)
committerantirez <antirez@gmail.com>
Wed, 8 Sep 2010 11:45:51 +0000 (13:45 +0200)
src/db.c

index ca520c8259d0b7758baf11fd0037345b653885af..c77c7614231112c793012bf886d3e42f4ca2f227 100644 (file)
--- a/src/db.c
+++ b/src/db.c
@@ -127,7 +127,7 @@ int dbDelete(redisDb *db, robj *key) {
      * deleting the key will kill the I/O thread bringing the key from swap
      * to memory, so the client will never be notified and unblocked if we
      * don't do it now. */
-    handleClientsBlockedOnSwappedKey(db,key);
+    /* handleClientsBlockedOnSwappedKey(db,key); */
     /* Deleting an entry from the expires dict will not free the sds of
      * the key, because it is shared with the main dictionary. */
     if (dictSize(db->expires) > 0) dictDelete(db->expires,key->ptr);