Commit 11182a1a authored by antirez's avatar antirez
Browse files

redis-check-aof: tell users there is a --fix option.

parent fc7ecd8d
...@@ -220,7 +220,8 @@ int redis_check_aof_main(int argc, char **argv) { ...@@ -220,7 +220,8 @@ int redis_check_aof_main(int argc, char **argv) {
printf("Successfully truncated AOF\n"); printf("Successfully truncated AOF\n");
} }
} else { } else {
printf("AOF is not valid\n"); printf("AOF is not valid. "
"Use the --fix option to try fixing it.\n");
exit(1); exit(1);
} }
} else { } else {
......
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