[Fix] Redis key expansion: EVAL: deal with strings

Este commit está contenido en:
Andrew Lewis 2018-02-27 15:18:48 +02:00
padre 1e54b03ed6
commit 6179837c52

Ver fichero

@ -225,7 +225,7 @@ local process_cmd = {
eval = function(args)
local idx_l = {}
local numkeys = args[2]
if numkeys >= 1 then
if numkeys and tonumber(numkeys) >= 1 then
for i = 3, numkeys + 2 do
table.insert(idx_l, i)
end