]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/nvmeof: Adding missing CLICommand file to nvmeof mgr module 67782/head
authorRedouane Kachach <rkachach@ibm.com>
Fri, 13 Mar 2026 15:40:01 +0000 (16:40 +0100)
committerRedouane Kachach <rkachach@ibm.com>
Fri, 13 Mar 2026 19:28:43 +0000 (20:28 +0100)
Fixes: https://tracker.ceph.com/issues/75492
Signed-off-by: Redouane Kachach <rkachach@ibm.com>
src/pybind/mgr/nvmeof/module.py

index df780f0bdc8e5a831d2725bb9a9715e0f0611218..b2d8d77ab377cded6c9445af6dc8cef9a7246183 100644 (file)
@@ -1,6 +1,7 @@
 import logging
 from typing import Any
 
+from .cli import NVMeoFCLICommand
 from mgr_module import MgrModule
 import rbd
 
@@ -10,6 +11,8 @@ POOL_NAME = ".nvmeof"
 
 
 class NVMeoF(MgrModule):
+    CLICommand = NVMeoFCLICommand
+
     def __init__(self, *args: Any, **kwargs: Any) -> None:
         super(NVMeoF, self).__init__(*args, **kwargs)