Github user dcelasun commented on the issue:
https://github.com/apache/thrift/pull/1459
The test fails with:
> src/common/context_test.go:45: server.Close undefined (type *http.Server
has no field or method Close)
`Server.Close()` was added in 1.8 but the test uses 1.7. You can just
remove that line since it's not a long running process, or you can make it
conditional with [`runtime.Version`](https://golang.org/pkg/runtime/#Version).---
