Marek Brysa created THRIFT-4320:
-----------------------------------
Summary: Use interface instead of strict http.Client type in
THttpClientOptions
Key: THRIFT-4320
URL: https://issues.apache.org/jira/browse/THRIFT-4320
Project: Thrift
Issue Type: Improvement
Components: Go - Library
Reporter: Marek Brysa
Priority: Minor
{{THttpClientOptions}} (http_client.go) takes a strict {{http.Client}} type
which disallows developers from customizing http.Client or providing their own
implementation. I propose to replace this with an interface such as:
{code}
type HttpClient interface {
Do(req *http.Request) (*http.Response, error)
}
{code}
{{Do()}} is the only function of http.Client that is used (in
{{THttpClient.Flush()}}).
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)