1 // +build race 2 3 package httpretty 4 5 // Race is a flag that can be usde to detect whether the race detector is on. 6 // It was added because as of Go 1.13.7 the TestOutgoingConcurrency test is failing because of a bug on the 7 // net/http standard library package. 8 // See https://golang.org/issue/30597 9 var Race = true 10