From 91435bc6af31fc807e7bdf1d9f9ad2112dd66ae4 Mon Sep 17 00:00:00 2001 From: Mykhailo Faraponov <11322032+moredure@users.noreply.github.com> Date: Mon, 20 Jan 2025 13:38:02 +0100 Subject: [PATCH] Fix typo in outgoing_slot_migration.cc (#4484) 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 9e1db91bb..a384f0b36 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; }