We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5fb2c commit 9976a6fCopy full SHA for 9976a6f
src/awsrun/commands/aws/dx_status.py
@@ -165,6 +165,7 @@
165
166
167
"""
168
+
169
import io
170
import re
171
import sys
@@ -417,14 +418,14 @@ def _conn2str(conn, vifs):
417
418
Style.RESET_ALL,
419
Style.BRIGHT,
420
Fore.YELLOW,
- f"{c_name:22.22} ",
421
+ f"{c_name:25.25} ",
422
423
(Fore.GREEN if c_state == "AVAILABLE" else Fore.RED),
424
f"{c_state:10} ",
425
Fore.BLUE,
- f"{c_bandwidth:7} ",
426
+ f"{c_bandwidth:>9} ",
427
Fore.MAGENTA,
- f"{len(vifs):3} VIFs ",
428
+ f"{len(vifs):5} VIFs ",
429
(Fore.RED + f"({v_down} down)" if v_down > 0 else ""),
430
Fore.RESET,
431
]
0 commit comments