]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/cephadm/upgrade: improve language a bit
authorSage Weil <sage@newdream.net>
Fri, 26 Feb 2021 17:12:24 +0000 (12:12 -0500)
committerSage Weil <sage@newdream.net>
Tue, 16 Mar 2021 12:56:17 +0000 (07:56 -0500)
Signed-off-by: Sage Weil <sage@newdream.net>
(cherry picked from commit bae8394c5e35b52b2cfaabfe79148a490efdf2dc)

src/pybind/mgr/cephadm/services/cephadmservice.py

index 05a2bd0dd38da13cd3730a2630de97358ecfbeed..3f86b1279a08698dfaea2eaefb95e680495383f8 100644 (file)
@@ -254,8 +254,8 @@ class CephadmService(metaclass=ABCMeta):
                    force: bool = False,
                    known: Optional[List[str]] = None) -> HandleCommandResult:
         names = [f'{self.TYPE}.{d_id}' for d_id in daemon_ids]
-        out = f'It is presumed safe to stop {names}'
-        err = f'It is NOT safe to stop {names}'
+        out = f'It is presumed safe to stop {",".join(names)}'
+        err = f'It is NOT safe to stop {",".join(names)} at this time'
 
         if self.TYPE not in ['mon', 'osd', 'mds']:
             logger.info(out)