From 330f95a3750cd7f323b6adbf0b6f2351553c5754 Mon Sep 17 00:00:00 2001 From: Emil Date: Mon, 3 Aug 2026 18:18:19 +0300 Subject: [PATCH] Drop a leftover helper --- coordinator/cmd/coordinator/serve_cmd.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/coordinator/cmd/coordinator/serve_cmd.go b/coordinator/cmd/coordinator/serve_cmd.go index 99eecc2..a19e4c0 100644 --- a/coordinator/cmd/coordinator/serve_cmd.go +++ b/coordinator/cmd/coordinator/serve_cmd.go @@ -369,10 +369,3 @@ func serveURLs(addr, publicURL string) (agentURL, resolvedPublic string) { return agentURL, "http://" + addr } } - -// browserHost normalises the URL used to open the UI in the browser: the -// loopback address is what the browser on the same host must dial, and a -// wildcard host cannot be dialled at all. -func browserHost(agentURL string) string { - return agentURL -}