mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
commit
2a89e8733f
|
@ -1,3 +1,7 @@
|
|||
## 1.4.1 / 2016-11-28
|
||||
|
||||
* [BUGFIX] Fix Consul service discovery
|
||||
|
||||
## 1.4.0 / 2016-11-25
|
||||
|
||||
* [FEATURE] Allow configuring Alertmanagers via service discovery
|
||||
|
|
|
@ -2,7 +2,7 @@ machine:
|
|||
environment:
|
||||
DOCKER_IMAGE_NAME: prom/prometheus
|
||||
QUAY_IMAGE_NAME: quay.io/prometheus/prometheus
|
||||
DOCKER_TEST_IMAGE_NAME: quay.io/prometheus/golang-builder:1.6-base
|
||||
DOCKER_TEST_IMAGE_NAME: quay.io/prometheus/golang-builder:1.7-base
|
||||
REPO_PATH: github.com/prometheus/prometheus
|
||||
pre:
|
||||
- sudo curl -L -o /usr/bin/docker 'https://s3-external-1.amazonaws.com/circle-downloads/docker-1.9.1-circleci'
|
||||
|
|
|
@ -197,7 +197,7 @@ func (cd *Discovery) Run(ctx context.Context, ch chan<- []*config.TargetGroup) {
|
|||
}
|
||||
|
||||
wctx, cancel := context.WithCancel(ctx)
|
||||
srv.watch(wctx, ch)
|
||||
go srv.watch(wctx, ch)
|
||||
|
||||
services[name] = cancel
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue