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 f16e4e7 commit 99e64b4Copy full SHA for 99e64b4
cli/cliui/agent.go
@@ -374,13 +374,13 @@ func (d ConnDiags) Write(w io.Writer) {
374
if len(client) > 0 {
375
_, _ = fmt.Fprint(w, "Possible client-side issues with direct connection:\n\n")
376
for _, msg := range client {
377
- _, _ = fmt.Fprintf(w, " - %s\n\n", msg)
+ _, _ = fmt.Fprintf(w, " %s\n\n", msg)
378
}
379
380
if len(agent) > 0 {
381
_, _ = fmt.Fprint(w, "Possible agent-side issues with direct connections:\n\n")
382
for _, msg := range agent {
383
384
385
386
0 commit comments