Fix typo in outgoing_slot_migration.cc (#4484)

Signed-off-by: Mykhailo Faraponov <11322032+moredure@users.noreply.github.com>
This commit is contained in:
Mykhailo Faraponov 2025-01-20 13:38:02 +01:00 committed by GitHub
parent 7d0530547b
commit 91435bc6af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -205,7 +205,7 @@ void OutgoingMigration::SyncFb() {
VLOG(1) << "Connecting to target node";
auto timeout = absl::GetFlag(FLAGS_slot_migration_connection_timeout_ms) * 1ms;
if (auto ec = ConnectAndAuth(timeout, &cntx_); ec) {
LOG(WARNING) << "Can't connect to taget node";
LOG(WARNING) << "Can't connect to target node";
cntx_.ReportError(GenericError(ec, "Couldn't connect to source."));
continue;
}
@ -218,7 +218,7 @@ void OutgoingMigration::SyncFb() {
}
if (auto ec = SendCommandAndReadResponse(cmd); ec) {
LOG(WARNING) << "Can't connect to taget node";
LOG(WARNING) << "Can't connect to target node";
cntx_.ReportError(GenericError(ec, "Could not send INIT command."));
continue;
}