]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/orch: fix 'orch ls' table spacing 33586/head
authorSage Weil <sage@redhat.com>
Thu, 27 Feb 2020 17:39:01 +0000 (11:39 -0600)
committerSage Weil <sage@redhat.com>
Thu, 27 Feb 2020 17:39:01 +0000 (11:39 -0600)
This command crossed paths with the PR that changed the spacing.

Signed-off-by: Sage Weil <sage@redhat.com>
src/pybind/mgr/orchestrator/module.py

index 59e3728433fe218322e119a605f20910e7209a5c..e6ba6498461df8a168cf417e643b27590e22cc15 100644 (file)
@@ -343,7 +343,7 @@ class OrchestratorCli(OrchestratorClientMixin, MgrModule):
             table.align['IMAGE NAME'] = 'l'
             table.align['IMAGE ID'] = 'l'
             table.left_padding_width = 0
-            table.right_padding_width = 1
+            table.right_padding_width = 2
             for s in sorted(services, key=lambda s: s.service_name):
                 if s.last_refresh:
                     age = to_pretty_timedelta(now - s.last_refresh) + ' ago'