From 155fb4b45e9da66802aed6226189941459fa014f Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 8 Sep 2010 13:45:51 +0200 Subject: [PATCH] latest fix reverted, there is some problem reported by the CI test --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index ca520c82..c77c7614 100644 --- 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); -- 2.47.2