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

This commit is contained in:
Andrew Lewis 2018-02-27 15:18:48 +02:00
父節點 1e54b03ed6
當前提交 6179837c52

查看文件

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