Unverified Commit 20df1424 authored by qetu3790's avatar qetu3790 Committed by GitHub
Browse files

Fix wrong tips when the user pass wrong # of arguments to redis.set_repl(). (#11415)

redis.set_repl() needs one arg, but the tips says two.
parent 9e1b879f
...@@ -1054,7 +1054,7 @@ static int luaRedisSetReplCommand(lua_State *lua) { ...@@ -1054,7 +1054,7 @@ static int luaRedisSetReplCommand(lua_State *lua) {
serverAssert(rctx); /* Only supported inside script invocation */ serverAssert(rctx); /* Only supported inside script invocation */
if (argc != 1) { if (argc != 1) {
luaPushError(lua, "redis.set_repl() requires two arguments."); luaPushError(lua, "redis.set_repl() requires one argument.");
return luaError(lua); return luaError(lua);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment