From: Redouane Kachach Date: Fri, 13 Mar 2026 15:40:01 +0000 (+0100) Subject: mgr/nvmeof: Adding missing CLICommand file to nvmeof mgr module X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=80d50bab7660d2f2677b87b2e270a437d203040c;p=ceph.git mgr/nvmeof: Adding missing CLICommand file to nvmeof mgr module Fixes: https://tracker.ceph.com/issues/75492 Signed-off-by: Redouane Kachach --- diff --git a/src/pybind/mgr/nvmeof/module.py b/src/pybind/mgr/nvmeof/module.py index df780f0bdc8..b2d8d77ab37 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)