Require go1.7 for compilation #2154

* Update the travis tests to exclude go1.6
  * Update the compile check to require go1.7+
  * Update misc go1.6 workarounds marked in the source
This commit is contained in:
Nick Craig-Wood 2018-04-06 19:04:31 +01:00
parent 32e02bd367
commit 67023f0040
4 changed files with 8 additions and 9 deletions

View file

@ -250,7 +250,7 @@ func cleanAuths(buf []byte) []byte {
func (t *Transport) RoundTrip(req *http.Request) (resp *http.Response, err error) {
// Get transactions per second token first if limiting
if tpsBucket != nil {
tbErr := tpsBucket.Wait(context.Background()) // FIXME switch to req.Context() when we drop go1.6 support
tbErr := tpsBucket.Wait(req.Context())
if tbErr != nil {
fs.Errorf(nil, "HTTP token bucket error: %v", err)
}