summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/rgw
diff options
context:
space:
mode:
authorRedouane Kachach <rkachach@redhat.com>2022-10-26 10:26:14 +0200
committerRedouane Kachach <rkachach@redhat.com>2022-10-26 10:26:14 +0200
commit57a99c1837926d52f44b68e4084b47df3dd3beae (patch)
treed32d65b8d74319212e9fe403ad5c5aea2bb9a9e8 /src/pybind/mgr/rgw
parentAddressing comments from the last review (diff)
downloadceph-57a99c1837926d52f44b68e4084b47df3dd3beae.tar.xz
ceph-57a99c1837926d52f44b68e4084b47df3dd3beae.zip
Fixing some minor issues
Signed-off-by: Redouane Kachach <rkachach@redhat.com>
Diffstat (limited to 'src/pybind/mgr/rgw')
-rw-r--r--src/pybind/mgr/rgw/module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pybind/mgr/rgw/module.py b/src/pybind/mgr/rgw/module.py
index 74ac8a22b2a..1f87481a7c6 100644
--- a/src/pybind/mgr/rgw/module.py
+++ b/src/pybind/mgr/rgw/module.py
@@ -106,7 +106,7 @@ class Module(orchestrator.OrchestratorClientMixin, MgrModule):
if available:
return func(self, *args, **kwargs)
else:
- err_msg = f"Cephadm is not available. Please enable cephadm by 'ceph mgr module enable cephadm'."
+ err_msg = "Orchestrator is not available. Please enable cephadm by 'ceph mgr module enable cephadm'."
return HandleCommandResult(retval=-errno.EINVAL, stdout='', stderr=err_msg)
return wrapper
return inner