Skip to content

Commit

Permalink
tweak error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpeye committed Jan 24, 2025
1 parent 67d6d13 commit 84379a2
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3969,11 +3969,9 @@ NProto::TError TDiskRegistryState::UpdateAgentCounters(
return MakeError(
E_ARGUMENT,
TStringBuilder()
<< "Unexpected device. DeviceId: \"" << uuid
<< "\" Sender node id: " << stats.GetNodeId()
<< " Found node id: "
<< (knownDevice ? ToString(knownDevice->GetNodeId())
: "null"));
<< "Unexpected device. DeviceId: " << uuid.Quote()
<< " Sender node id: " << stats.GetNodeId()
<< " Found node id: " << knownDevice->GetNodeId());
}
}

Expand Down

0 comments on commit 84379a2

Please sign in to comment.