You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "James E. King, III (JIRA)" <ji...@apache.org> on 2017/11/20 12:36:00 UTC

[jira] [Resolved] (THRIFT-4385) Go remote client -u flag is broken

     [ https://issues.apache.org/jira/browse/THRIFT-4385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James E. King, III resolved THRIFT-4385.
----------------------------------------
       Resolution: Fixed
    Fix Version/s: 0.11.0

Committed - thanks.

> Go remote client -u flag is broken
> ----------------------------------
>
>                 Key: THRIFT-4385
>                 URL: https://issues.apache.org/jira/browse/THRIFT-4385
>             Project: Thrift
>          Issue Type: Bug
>          Components: Go - Compiler
>            Reporter: Dylan Trotter
>            Assignee: James E. King, III
>             Fix For: 0.11.0
>
>
> There are two separate but trivial bugs in the Go remote implementation:
> * The parseUrl local variable is always empty because the code that attempts to assign to it actually assigns to a new scoped variable (`parsedUrl, err := url.Parse(urlString)`). This means that the -u flag does not work and the http.Get() call deep in the stack returns an obscure message about the URL scheme being empty (actually the whole URL is empty).
> * -When using HTTP transport the tool uses a THttpClient which issues a GET. The Go http library assumes an empty body for GET requests which means that the request payload does not accompany the request. Instead of using THttpClient the tools should use THttpPostClient so that the request payload will accompany the request.-
> The second issue above has separately been resolved: THttpPostClient is deprecated and is just an alias for THttpClient since 0dd8235.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)