From: Avan Thakkar Date: Mon, 2 Mar 2026 13:00:48 +0000 (+0530) Subject: mgr/nvmeof: add missing CLICommand to the module X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=587d35bd59ab804674524f5b5de1d2192fdeb898;p=ceph.git mgr/nvmeof: add missing CLICommand to the module Fixed AttributeError: type object 'NVMeoF' has no attribute 'CLICommand' Signed-off-by: Avan Thakkar --- diff --git a/src/pybind/mgr/nvmeof/cli.py b/src/pybind/mgr/nvmeof/cli.py new file mode 100644 index 00000000000..1bcff2ba0fc --- /dev/null +++ b/src/pybind/mgr/nvmeof/cli.py @@ -0,0 +1,3 @@ +from mgr_module import CLICommandBase + +NVMeoFCLICommand = CLICommandBase.make_registry_subtype("NVMeoFCLICommand")