Re: [go-nuts] http.client.Do(request) panics in highly concurrent apps (Go 1.14.1)

2020-04-03 Thread Ian Lance Taylor
On Fri, Apr 3, 2020 at 4:30 AM Robert Engels wrote: > > Sorry, got the versions wrong. Looks like the fix in 1.14.1 might need fixing. See https://golang.org/issue/38023 and https://golang.org/issue/38070. Ian > On Apr 3, 2020, at 6:12 AM, Robert Engels wrote: > >  > Which is a duplicate of

Re: [go-nuts] http.client.Do(request) panics in highly concurrent apps (Go 1.14.1)

2020-04-03 Thread Robert Engels
Sorry, got the versions wrong. Looks like the fix in 1.14.1 might need fixing. > On Apr 3, 2020, at 6:12 AM, Robert Engels wrote: > >  > Which is a duplicate of https://github.com/golang/go/issues/37449 > so I would comment/reopen that issue as it appears either the fix was not > correct

Re: [go-nuts] http.client.Do(request) panics in highly concurrent apps (Go 1.14.1)

2020-04-03 Thread Robert Engels
Which is a duplicate of https://github.com/golang/go/issues/37449 so I would comment/reopen that issue as it appears either the fix was not correct (unlikely since it works in 1.14) or that it wasn’t merged correctly into 1.15 (likely). > On Apr 3, 2020, at 12:20 AM, Pierre Durand wrote: > >

Re: [go-nuts] http.client.Do(request) panics in highly concurrent apps (Go 1.14.1)

2020-04-02 Thread Pierre Durand
The stack trace is identical to https://github.com/golang/go/issues/3 Le jeudi 2 avril 2020 23:23:02 UTC+2, Robert Engels a écrit : > > Does your code use any unsafe or cgo? > > On Apr 2, 2020, at 11:38 AM, 'hamid...@live.com ' via > golang-nuts > wrote: > >  > Hi folks, > > An issue with

Re: [go-nuts] http.client.Do(request) panics in highly concurrent apps (Go 1.14.1)

2020-04-02 Thread Robert Engels
Does your code use any unsafe or cgo? > On Apr 2, 2020, at 11:38 AM, 'hamid.gha...@live.com' via golang-nuts > wrote: > >  > Hi folks, > > An issue with the latest version of Go (1.14.1). My application panics when > making concurrent http GET requests to another API. > > Unfortunately