]> git.saurik.com Git - redis.git/blobdiff - src/scripting.c
A reimplementation of blocking operation internals.
[redis.git] / src / scripting.c
index be52a11410c0d3b25b98271439fbdee778d7b063..35b654f7739c490b806cbe5896d30766cbb98ad9 100644 (file)
@@ -282,8 +282,6 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) {
      * reply as expected. */
     if ((cmd->flags & REDIS_CMD_SORT_FOR_SCRIPT) &&
         (reply[0] == '*' && reply[1] != '-')) {
-        /* Skip this step if command is SORT but output was already sorted */
-        if (cmd->proc != sortCommand || server.sort_dontsort)
             luaSortArray(lua);
     }
     sdsfree(reply);