From 317d6fd73d5e9dc8a93840ab13d3701f4a5b0935 Mon Sep 17 00:00:00 2001 From: Marcin Tojek Date: Thu, 6 Feb 2025 09:36:17 +0000 Subject: [PATCH] fix: fix broken troubleshooting link (#16469) Fixes: https://github.com/coder/coder/issues/16468 The troubleshooting link was not updated after moving around docs. --- cli/ping.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/ping.go b/cli/ping.go index 0e219d5762f86..19191b92916bb 100644 --- a/cli/ping.go +++ b/cli/ping.go @@ -159,7 +159,7 @@ func (r *RootCmd) ping() *serpent.Command { LocalNetInfo: ni, Verbose: r.verbose, PingP2P: didP2p, - TroubleshootingURL: appearanceConfig.DocsURL + "/networking/troubleshooting", + TroubleshootingURL: appearanceConfig.DocsURL + "/admin/networking/troubleshooting", } awsRanges, err := cliutil.FetchAWSIPRanges(diagCtx, cliutil.AWSIPRangesURL)