influxdata / influxdb-relay

Service to replicate InfluxDB data for high availability
MIT License
855 stars 350 forks source link

influxdb-relay doesn't build with Go versions older than 1.5 #8

Closed galaxylqx closed 8 years ago

galaxylqx commented 8 years ago
go install github.com/influxdata/influxdb-relay
warning: GOPATH set to GOROOT (/usr/lib/golang) has no effect
# github.com/influxdata/influxdb-relay/relay
/usr/lib/golang/src/github.com/influxdata/influxdb-relay/relay/udp.go:210: undefined: bytes.LastIndexByte
jonseymour commented 8 years ago

This issue is caused by attempting to compile influxdb-relay with an older version of go. You might try with go1.6

galaxylqx commented 8 years ago

Test ok,Thanks

joelegasse commented 8 years ago

bytes.LastIndexByte is a Go 1.5+ function, I'll add a note to the README