From e52c64538f6438da5926f15f1d8c697238afa17e Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Thu, 9 May 2019 14:50:12 -0400 Subject: [PATCH] msg/async: reduce verbosity of connection timeout failures Long running clients connected to thrashing OSDs could result in a "see no progress in more than " message printed to stderr. This is not an error but can result in test failures when console output is compared against expected output. Fixes: http://tracker.ceph.com/issues/39448 Signed-off-by: Jason Dillaman (cherry picked from commit 6b4f9729fd7cec14352b74cb3674a893159a1aa5) --- src/msg/async/AsyncConnection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index 9c0d68d98f8..cab4145de71 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -747,7 +747,7 @@ void AsyncConnection::tick(uint64_t id) if (connect_timeout_us <= (uint64_t)std::chrono::duration_cast (now - last_connect_started).count()) { - ldout(async_msgr->cct, 0) << __func__ << " see no progress in more than " + ldout(async_msgr->cct, 1) << __func__ << " see no progress in more than " << connect_timeout_us << " us during connecting, fault." << dendl; -- 2.47.3