logpolicy: fix, test LogHost to work as documented

Change-Id: I225c9602a7587c69c237e336d0714fc8315ea6bd
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick
2022-09-28 13:45:55 -07:00
committed by Brad Fitzpatrick
parent a5fab23e8f
commit 18159431ab
2 changed files with 40 additions and 1 deletions
+3 -1
View File
@@ -74,7 +74,9 @@ func getLogTarget() string {
// logtail server, or the default.
func LogHost() string {
if v := getLogTarget(); v != "" {
return v
if u, err := url.Parse(v); err == nil {
return u.Hostname()
}
}
return logtail.DefaultHost
}