]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/OSDMonitor: call no_reply() on ignored osd alive 64135/head
authorNitzan Mordechai <nmordech@redhat.com>
Tue, 24 Jun 2025 09:57:25 +0000 (09:57 +0000)
committerNitzan Mordechai <nmordech@redhat.com>
Tue, 24 Jun 2025 09:57:32 +0000 (09:57 +0000)
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 <nmordech@ibm.com>
src/mon/OSDMonitor.cc

index 07b7cdbb64dec983829c75760f2ffa1c68e39a50..4eaeee7407e946874609a85459e81c14bcc34857 100644 (file)
@@ -3894,6 +3894,7 @@ bool OSDMonitor::preprocess_alive(MonOpRequestRef op)
   return false;
 
  ignore:
+  mon.no_reply(op);
   return true;
 }