]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
msg/async: reduce verbosity of connection timeout failures
authorJason Dillaman <dillaman@redhat.com>
Thu, 9 May 2019 18:50:12 +0000 (14:50 -0400)
committerJason Dillaman <dillaman@redhat.com>
Thu, 9 May 2019 18:50:12 +0000 (14:50 -0400)
Long running clients connected to thrashing OSDs could result in a
"see no progress in more than <timeout>" 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 <dillaman@redhat.com>
src/msg/async/AsyncConnection.cc

index 6100ff2995e0bbfa13a552544cccacdbcc112c35..74ad6cd5d0fd28146bb475c08739396220f6004d 100644 (file)
@@ -757,7 +757,7 @@ void AsyncConnection::tick(uint64_t id)
     if (connect_timeout_us <=
         (uint64_t)std::chrono::duration_cast<std::chrono::microseconds>
           (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;