You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Can Celasun (JIRA)" <ji...@apache.org> on 2017/12/15 12:01:00 UTC

[jira] [Comment Edited] (THRIFT-4320) Use interface instead of strict http.Client type in THttpClientOptions

    [ https://issues.apache.org/jira/browse/THRIFT-4320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16162813#comment-16162813 ] 

Can Celasun edited comment on THRIFT-4320 at 12/15/17 12:00 PM:
----------------------------------------------------------------

This isn't necessary. In {{http_client.go}} we have a type, {{THttpClientOptions}}, which can be used to pass a custom a client. You can also choose to override the exported {{DefaultHttpClient}}.

[~jensg] wontfix?


was (Author: calcifer):
On second thought, this isn't necessary. In {{http_client.go}} we have a type, {{THttpClientOptions}}, which can be used to pass a custom a client. You can also choose to override the exported {{DefaultHttpClient}}.

[~jensg] wontfix?

> 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)