Skip to content

Commit

Permalink
osd: add peer_addr in heartbeat_check log message
Browse files Browse the repository at this point in the history
Fixes: http://tracker.ceph.com/issues/15762

Signed-off-by: Vikhyat Umrao <[email protected]>
  • Loading branch information
vumrao committed May 20, 2016
1 parent 3516c75 commit f235b9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/osd/OSD.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4184,14 +4184,14 @@ void OSD::heartbeat_check()
if (p->second.is_unhealthy(cutoff)) {
if (p->second.last_rx_back == utime_t() ||
p->second.last_rx_front == utime_t()) {
derr << "heartbeat_check: no reply from osd." << p->first
<< " ever on either front or back, first ping sent " << p->second.first_tx
<< " (cutoff " << cutoff << ")" << dendl;
derr << "heartbeat_check: no reply from " << p->second.con_front->get_peer_addr().get_sockaddr()
<< " osd." << p->first << " ever on either front or back, first ping sent "
<< p->second.first_tx << " (cutoff " << cutoff << ")" << dendl;
// fail
failure_queue[p->first] = p->second.last_tx;
} else {
derr << "heartbeat_check: no reply from osd." << p->first
<< " since back " << p->second.last_rx_back
derr << "heartbeat_check: no reply from " << p->second.con_front->get_peer_addr().get_sockaddr()
<< " osd." << p->first << " since back " << p->second.last_rx_back
<< " front " << p->second.last_rx_front
<< " (cutoff " << cutoff << ")" << dendl;
// fail
Expand Down

0 comments on commit f235b9c

Please sign in to comment.