More informative error when DEBUG RELOAD fails.

This commit is contained in:
antirez 2011-10-14 14:30:41 +02:00
parent dd9ad57062
commit 80ad7189e8

View File

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