logpolicy: fix, test LogHost to work as documented
Change-Id: I225c9602a7587c69c237e336d0714fc8315ea6bd Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
committed by
Brad Fitzpatrick
parent
a5fab23e8f
commit
18159431ab
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user