1
0
Fork 0
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:
Andy Dunstall 2024-10-10 10:14:15 +01:00 committed by GitHub
parent a5fa3ab9f5
commit 1e429c8e59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;