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

Šī revīzija ir iekļauta:
Andrew Lewis 2018-02-27 15:18:48 +02:00
vecāks 1e54b03ed6
revīzija 6179837c52

Parādīt failu

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