mirror of
https://github.com/fluencelabs/redis
synced 2025-06-15 10:11:21 +00:00
Don't reset the client when processCommand returns REDIS_ERR
This commit is contained in:
@ -955,7 +955,7 @@ int processCommand(redisClient *c) {
|
||||
addReply(c,shared.queued);
|
||||
} else {
|
||||
if (server.vm_enabled && server.vm_max_threads > 0 &&
|
||||
blockClientOnSwappedKeys(c,cmd)) return 1;
|
||||
blockClientOnSwappedKeys(c,cmd)) return REDIS_ERR;
|
||||
call(c,cmd);
|
||||
}
|
||||
return REDIS_OK;
|
||||
|
Reference in New Issue
Block a user