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

This commit is contained in:
Andrew Lewis 2018-02-27 15:18:48 +02:00
vanhempi 1e54b03ed6
commit 6179837c52

Näytä tiedosto

@ -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