etcd: Bump to etcd v3.3 and golang 1.9

This moves us to etcd v3.3 (a new major release) which has some useful
features but that requires version 1.9 of golang.
This commit is contained in:
James Shubin
2018-02-15 12:32:22 -05:00
parent 27e51f1bcb
commit 9ba893c06c
10 changed files with 10 additions and 12 deletions

View File

@@ -144,7 +144,7 @@ func (obj *Prometheus) Start() error {
// Stop the http server.
func (obj *Prometheus) Stop() error {
// TODO: There is no way in go < 1.8 to stop a http server.
// FIXME: There is no way in go < 1.8 to stop a http server. Add this!
// https://stackoverflow.com/questions/39320025/go-how-to-stop-http-listenandserve/41433555#41433555
return nil
}