Skip to content

Commit

Permalink
Merge pull request ceph#43005 from wxypro/timeout_conn_msg_opt
Browse files Browse the repository at this point in the history
msg: Add target_addr to log when connections timed out

Reviewed-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov authored Jul 27, 2022
2 parents 98c074a + 69239d6 commit d7fe19d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/msg/async/AsyncConnection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,8 @@ void AsyncConnection::tick(uint64_t id)
(now - last_connect_started).count()) {
ldout(async_msgr->cct, 1) << __func__ << " see no progress in more than "
<< connect_timeout_us
<< " us during connecting, fault."
<< " us during connecting to "
<< target_addr << ", fault."
<< dendl;
protocol->fault();
} else {
Expand Down

0 comments on commit d7fe19d

Please sign in to comment.