Skip to content

Commit

Permalink
refactor(generic_family): Fix bad data format error in the RESTORE co…
Browse files Browse the repository at this point in the history
…mmand

Signed-off-by: Stepan Bagritsevich <[email protected]>
  • Loading branch information
BagritsevichStepan committed Aug 12, 2024
1 parent 634b08d commit cc687ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/generic_family.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ void GenericFamily::Restore(CmdArgList args, ConnectionContext* cntx) {
if (result.value()) {
return cntx->SendOk();
} else {
return cntx->SendError("Bad data formatasdfasdf");
return cntx->SendError("Bad data format");
}
} else {
switch (result.status()) {
Expand Down

0 comments on commit cc687ef

Please sign in to comment.