[go-nuts] Errors with uploading large files (> 1gb) - multipart

2017-12-08 Thread seth . h . cohen
1. *Go Version* - go version go1.6.3 linux/amd64 2. *OS* - CentOS Linux release 7.1.1503 (Core) 3. *Description of Problem* - *GOAL: *Handle files (can be of any arbitrarily large size) on my server and then upload to google cloud storage. - With t

[go-nuts] Errors with uploading large files (> 1gb) - multipart

2017-12-08 Thread Dave Cheney
I’ve never used the multipart reader, but looking at this piece of logic var uploadFile *multipart.Part for { p, err := fr.NextPart() if err == io.EOF { break } if err != nil { log.Fatal(err) } if err != nil {