From d1318988e508b095e2c892ca644ff08d1b3463ae Mon Sep 17 00:00:00 2001 From: Mykhailo Faraponov <11322032+moredure@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:54:05 +0100 Subject: [PATCH] Fix typo in outgoing_slot_migration.cc Signed-off-by: Mykhailo Faraponov <11322032+moredure@users.noreply.github.com> --- src/server/cluster/outgoing_slot_migration.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/cluster/outgoing_slot_migration.cc b/src/server/cluster/outgoing_slot_migration.cc index 9e1db91bbdf0..a384f0b36743 100644 --- a/src/server/cluster/outgoing_slot_migration.cc +++ b/src/server/cluster/outgoing_slot_migration.cc @@ -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; }