constabulary / gb

gb, the project based build tool for Go
https://getgb.io/
MIT License
2.15k stars 150 forks source link

FIX: limit goroutines in restore command #671

Closed adone closed 7 years ago

adone commented 7 years ago

Our project have ~120 dependencies and gb creates ~120 parallel requests to github.com. As result: curl: (56) SSLRead() return error -36 and EOF

davecheney commented 7 years ago

Sorry for the delay.

This is a lot of code, can it be made simpler by adding a simple semaphore using a buffered channel?

davecheney commented 7 years ago

Obsoleted by #695