From 00e0f67c64be8035e4e77cdef19b98275b87c424 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Tue, 18 Mar 2025 19:34:53 +0000 Subject: [PATCH] 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) --- src/crimson/osd/osd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crimson/osd/osd.cc b/src/crimson/osd/osd.cc index 57227eaa66d6c..8a6bb5c6d43c2 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(); }); -- 2.39.5