mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
fix(cluster): fix unknown migration error (#3899)
This commit is contained in:
parent
a5fa3ab9f5
commit
1e429c8e59
1 changed files with 1 additions and 1 deletions
|
@ -871,7 +871,7 @@ void ClusterFamily::InitMigration(CmdArgList args, ConnectionContext* cntx) {
|
|||
});
|
||||
if (!found) {
|
||||
VLOG(1) << "Unrecognized incoming migration from " << source_id;
|
||||
return cntx->SendError(OutgoingMigration::kUnknownMigration);
|
||||
return cntx->SendSimpleString(OutgoingMigration::kUnknownMigration);
|
||||
}
|
||||
|
||||
VLOG(1) << "Init migration " << source_id;
|
||||
|
|
Loading…
Reference in a new issue