Is it possible this is a symtom of issue 5522 ?
On Fri, May 17, 2013 at 6:35 AM, <
col...@boundary.com> wrote:
> I've written a program whose goal is to execute many millions of http
> requests. To achieve this i create a new http client like so:
>
> func newHttpClient() *http.Client {
> transport := &http.Transport{
> MaxIdleConnsPerHost: 50,
> DisableCompression: true,
> }
> return &http.Client{Transport: transport}
> }
>
> Periodically, as it runs, I see in the log:
>
> 2013/05/16 20:16:13 Unsolicited response received on idle HTTP channel
> starting with "H"; err=<nil>
>
> It was much more frequent without DisableCompression: true, but it's still
> popping up.
>
> This is running on the latest tip, linux/amd64.
>
> Any ideas on how to understand this?
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
golang-nuts...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>