提交 12caffee 编写于 作者: M Madelyn Olson

Added a missed space in lua errors

上级 576a0890
...@@ -688,13 +688,13 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) { ...@@ -688,13 +688,13 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) {
{ {
if (error_code == CLUSTER_REDIR_DOWN_RO_STATE) { if (error_code == CLUSTER_REDIR_DOWN_RO_STATE) {
luaPushError(lua, luaPushError(lua,
"Lua script attempted to execute a write command while the" "Lua script attempted to execute a write command while the "
"cluster is down and readonly"); "cluster is down and readonly");
} else if (error_code == CLUSTER_REDIR_DOWN_STATE) { } else if (error_code == CLUSTER_REDIR_DOWN_STATE) {
luaPushError(lua, luaPushError(lua,
"Lua script attempted to execute a command while the" "Lua script attempted to execute a command while the "
"cluster is down"); "cluster is down");
} else {} } else {
luaPushError(lua, luaPushError(lua,
"Lua script attempted to access a non local key in a " "Lua script attempted to access a non local key in a "
"cluster node"); "cluster node");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册