From 80d50bab7660d2f2677b87b2e270a437d203040c Mon Sep 17 00:00:00 2001 From: Redouane Kachach Date: Fri, 13 Mar 2026 16:40:01 +0100 Subject: [PATCH] mgr/nvmeof: Adding missing CLICommand file to nvmeof mgr module Fixes: https://tracker.ceph.com/issues/75492 Signed-off-by: Redouane Kachach --- src/pybind/mgr/nvmeof/module.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pybind/mgr/nvmeof/module.py b/src/pybind/mgr/nvmeof/module.py index df780f0bdc8e..b2d8d77ab377 100644 --- a/src/pybind/mgr/nvmeof/module.py +++ b/src/pybind/mgr/nvmeof/module.py @@ -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) -- 2.47.3