Commit 12caffee authored by Madelyn Olson's avatar Madelyn Olson
Browse files

Added a missed space in lua errors

parent 576a0890
......@@ -688,13 +688,13 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) {
{
if (error_code == CLUSTER_REDIR_DOWN_RO_STATE) {
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");
} else if (error_code == CLUSTER_REDIR_DOWN_STATE) {
luaPushError(lua,
"Lua script attempted to execute a command while the"
"Lua script attempted to execute a command while the "
"cluster is down");
} else {}
} else {
luaPushError(lua,
"Lua script attempted to access a non local key in a "
"cluster node");
......
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