Files
grafana/pkg/api
Ivan Babrou 9a4ae30227 Enable dualstack in every net.Dialer, fixes #9364
Default transport enables it:

* https://github.com/golang/go/blob/d2826d3e06/src/net/http/transport.go#L42-L46

```
    DialContext: (&net.Dialer{
	Timeout:   30 * time.Second,
	KeepAlive: 30 * time.Second,
	DualStack: true,
    }).DialContext,
```

See also: https://github.com/golang/go/issues/15324
2017-09-27 22:29:48 -07:00
..
2015-11-16 07:28:38 -08:00
2017-05-03 08:56:51 +02:00
2017-06-05 10:09:27 +02:00
2016-02-16 12:12:04 +11:00