Github user johnboiles commented on the issue:
https://github.com/apache/thrift/pull/1461
@dcelasun any thoughts on fixing the tests? Looks like
`tutorial/go/src/tutorial/tutorial.go` imports its `BaseClient` from another
package. Since `c` isn't public in that other package, my modified initializer
fails.
Probably the simplest fix would just be to add a public accessor for `c`,
(e.g. `func (p *BaseClient) C() thrift.TClient`) and us that public access in
my modified initializer methods. What do you think?
---