chore: fix typo in clientNetcheckSummary for support bundle command (#19441)

This PR fixes a typo in the original support bundle implementation for
the `clientNetcheckSummary` var.
This commit is contained in:
Rowan Smith
2025-08-21 10:08:51 +10:00
committed by GitHub
parent ee789dac9a
commit baf30679e0
+1 -1
View File
@@ -251,7 +251,7 @@ func summarizeBundle(inv *serpent.Invocation, bun *support.Bundle) {
clientNetcheckSummary := bun.Network.Netcheck.Summarize("Client netcheck:", docsURL)
if len(clientNetcheckSummary) > 0 {
cliui.Warn(inv.Stdout, "Networking issues detected:", deployHealthSummary...)
cliui.Warn(inv.Stdout, "Networking issues detected:", clientNetcheckSummary...)
}
}