Skip to content

Commit

Permalink
Merge pull request #860 from ripienaar/s_report_table
Browse files Browse the repository at this point in the history
Fix rendering of mirror information in s report
  • Loading branch information
ripienaar authored Sep 14, 2023
2 parents e4169c9 + 5d8867b commit 118da2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/stream_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ func (c *streamCmd) renderReplication(stats []streamStat) {
if c.reportRaw {
table.AddRow(s.Name, "Mirror", eApiPrefix, s.Mirror.Name, "", "", s.Mirror.Active, s.Mirror.Lag, apierr)
} else {
table.AddRow(s.Name, "Mirror", eApiPrefix, s.Mirror.Name, f(s.Mirror.Active), f(s.Mirror.Lag), apierr)
table.AddRow(s.Name, "Mirror", eApiPrefix, s.Mirror.Name, "", "", f(s.Mirror.Active), f(s.Mirror.Lag), apierr)
}
}

Expand Down

0 comments on commit 118da2e

Please sign in to comment.