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.
This commit is contained in:
qetu3790 2022-10-23 20:06:58 +08:00 committed by GitHub
parent 9e1b879f5b
commit 20df1424a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1054,7 +1054,7 @@ static int luaRedisSetReplCommand(lua_State *lua) {
serverAssert(rctx); /* Only supported inside script invocation */
if (argc != 1) {
luaPushError(lua, "redis.set_repl() requires two arguments.");
luaPushError(lua, "redis.set_repl() requires one argument.");
return luaError(lua);
}