From: Samuel Just Date: Tue, 18 Mar 2025 19:34:53 +0000 (+0000) Subject: crimson: handle_rep_op_reply downgrade stale message to debug X-Git-Tag: v20.1.0~325^2~10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=00e0f67c64be8035e4e77cdef19b98275b87c424;p=ceph.git crimson: handle_rep_op_reply downgrade stale message to debug This isn't actually unusual or alarming. Signed-off-by: Samuel Just (cherry picked from commit d5f6d033b612a691d27b5b78cf2361180cda696c) --- diff --git a/src/crimson/osd/osd.cc b/src/crimson/osd/osd.cc index 57227eaa66d..8a6bb5c6d43 100644 --- a/src/crimson/osd/osd.cc +++ b/src/crimson/osd/osd.cc @@ -1447,7 +1447,7 @@ seastar::future<> OSD::handle_rep_op_reply( m->finish_decode(); pg->handle_rep_op_reply(*m); } else { - WARN("stale reply: {}", *m); + DEBUG("stale reply: {}", *m); } return seastar::now(); });