diff --git a/src/commands.jl b/src/commands.jl index 676226c..3a4bad3 100644 --- a/src/commands.jl +++ b/src/commands.jl @@ -213,8 +213,8 @@ end # Scripting commands # TODO: PipelineConnection and TransactionConnection -function evalscript(conn::RedisConnection, script, numkeys::Integer, args) - response = execute_command(conn, flatten_command("eval", script, numkeys, args)) +function evalscript(conn::RedisConnection, script, numkeys::Integer, keys, args) + response = execute_command(conn, flatten_command("eval", script, numkeys, keys, args)) convert_eval_response(Any, response) end