Re: [go-nuts] Trouble with HTTP PUT, and 100-continue

2017-04-09 Thread David Peacock
Thanks Brad; I'll take a look and see how to plug this in. On Sun, Apr 9, 2017 at 11:39 AM, Brad Fitzpatrick wrote: > See https://golang.org/pkg/net/http/#Transport.ExpectContinueTimeout > > The Go http package deals with 100 continue automatically. > > On Sat, Apr 8, 2017 at 3:24 PM, David Peac

Re: [go-nuts] Trouble with HTTP PUT, and 100-continue

2017-04-09 Thread Brad Fitzpatrick
See https://golang.org/pkg/net/http/#Transport.ExpectContinueTimeout The Go http package deals with 100 continue automatically. On Sat, Apr 8, 2017 at 3:24 PM, David Peacock wrote: > Hi all, > > I'm having difficulty implementing file upload using > http.NewRequest("PUT"). As shown in my use c