-
Notifications
You must be signed in to change notification settings - Fork 217
Description
Hi there - I'm just trying to work through the install docs in the readme, but I'm hitting a problem with
- Install etcd
go install github.com/coreos/etcd
jim@ip-10-11-0-123:~/workspace/diego-release$ go install github.com/coreos/etcd
github.com/coreos/etcd/pkg/transport
src/github.com/coreos/etcd/pkg/transport/listener.go:56:4: error: unknown field ‘KeepAlive’ in ‘net.Dialer’
KeepAlive: 30 * time.Second,
^
src/github.com/coreos/etcd/pkg/transport/listener.go:58:3: error: unknown field ‘TLSHandshakeTimeout’ in ‘http.Transport’
TLSHandshakeTimeout: 10 * time.Second,
^
src/github.com/coreos/etcd/pkg/transport/timeout_transport.go:34:4: error: unknown field ‘KeepAlive’ in ‘net.Dialer’
KeepAlive: 30 * time.Second,
^
I suspect this is caused by Ubuntu 14.04 coming with gccgo-go 4.9, which as I understand it only contains support for Go 1.2
Is there any workaround for this one?
Cheers!!