Fix re-enabled again, I forgot to check if VM was enabled before calling handleClient...
authorantirez <antirez@gmail.com>
Wed, 8 Sep 2010 11:47:28 +0000 (13:47 +0200)
committerantirez <antirez@gmail.com>
Wed, 8 Sep 2010 11:47:28 +0000 (13:47 +0200)
src/db.c

index c77c7614231112c793012bf886d3e42f4ca2f227..afca3cddd12eb2b9a3f5d3df6aa684c389b16d97 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); */
+    if (server.vm_enabled) 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);