From: Nitzan Mordechai Date: Tue, 24 Jun 2025 09:57:25 +0000 (+0000) Subject: mon/OSDMonitor: call no_reply() on ignored osd alive X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fdf08aabfff48ec86385b0f41ea72152d6be7db3;p=ceph.git mon/OSDMonitor: call no_reply() on ignored osd alive When osd alive is been ignore, we need to call mon no_reply so it can tell the forwarding mon to discard its state. Fixes: https://tracker.ceph.com/issues/55101 Signed-off-by: Nitzan Mordechai --- diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index 07b7cdbb64d..4eaeee7407e 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -3894,6 +3894,7 @@ bool OSDMonitor::preprocess_alive(MonOpRequestRef op) return false; ignore: + mon.no_reply(op); return true; }