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 d2800c7 commit e5795f3Copy full SHA for e5795f3
1 file changed
ddmadm/src/main.rs
@@ -111,12 +111,13 @@ async fn run() -> Result<()> {
111
let mut tw = TabWriter::new(stdout());
112
writeln!(
113
&mut tw,
114
- "{}\t{}\t{}\t{}\t{}",
+ "{}\t{}\t{}\t{}\t{}\t{}",
115
"Interface".dimmed(),
116
"Host".dimmed(),
117
"Address".dimmed(),
118
"Kind".dimmed(),
119
"Status".dimmed(),
120
+ "Duration".dimmed(),
121
)?;
122
let mut peers: Vec<_> = msg.into_inner().into_iter().collect();
123
peers.sort_by_key(|(index, _)| index.clone());
@@ -129,7 +130,7 @@ async fn run() -> Result<()> {
129
130
};
131
132
- "{}\t{}\t{}\t{}\t{} {}",
133
134
index,
135
info.host,
136
info.addr,
0 commit comments