diff options
author | Redouane Kachach <rkachach@redhat.com> | 2022-10-26 10:26:14 +0200 |
---|---|---|
committer | Redouane Kachach <rkachach@redhat.com> | 2022-10-26 10:26:14 +0200 |
commit | 57a99c1837926d52f44b68e4084b47df3dd3beae (patch) | |
tree | d32d65b8d74319212e9fe403ad5c5aea2bb9a9e8 /src/pybind/mgr/rgw | |
parent | Addressing comments from the last review (diff) | |
download | ceph-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.py | 2 |
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 |