Commit 80ad7189 authored by antirez's avatar antirez
Browse files

More informative error when DEBUG RELOAD fails.

parent dd9ad570
...@@ -222,7 +222,7 @@ void debugCommand(redisClient *c) { ...@@ -222,7 +222,7 @@ void debugCommand(redisClient *c) {
} }
emptyDb(); emptyDb();
if (rdbLoad(server.dbfilename) != REDIS_OK) { if (rdbLoad(server.dbfilename) != REDIS_OK) {
addReply(c,shared.err); addReplyError(c,"Error trying to load the RDB dump");
return; return;
} }
redisLog(REDIS_WARNING,"DB reloaded by DEBUG RELOAD"); redisLog(REDIS_WARNING,"DB reloaded by DEBUG RELOAD");
......
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