http://play.golang.org/p/9zinaw70z8 ``` go u, err := url.Parse("localhost:8080") ``` here u is `&url.URL{Scheme:"localhost", Opaque:"8080"}` should be `&url.URL{Host:"localhost:8080"}` Will fix.