mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
Fix typo in outgoing_slot_migration.cc (#4484)
Signed-off-by: Mykhailo Faraponov <11322032+moredure@users.noreply.github.com>
This commit is contained in:
parent
7d0530547b
commit
91435bc6af
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue