Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
fddc4757
Commit
fddc4757
authored
Sep 26, 2019
by
antirez
Browse files
BGREWRITEAOF: improve the generic error message.
parent
b7b23bdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/aof.c
View file @
fddc4757
...
...
@@ -1630,7 +1630,8 @@ void bgrewriteaofCommand(client *c) {
}
else
if
(
rewriteAppendOnlyFileBackground
()
==
C_OK
)
{
addReplyStatus
(
c
,
"Background append only file rewriting started"
);
}
else
{
addReply
(
c
,
shared
.
err
);
addReplyError
(
c
,
"Can't execute an AOF background rewriting. "
"Please check the server logs for more information."
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment