Skip to content

Commit

Permalink
Merge pull request prometheus#2230 from prometheus/cut-1.4.1
Browse files Browse the repository at this point in the history
*: cut 1.4.1
  • Loading branch information
fabxc authored Nov 28, 2016
2 parents ecad074 + 6be1e98 commit 2a89e87
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion discovery/consul/consul.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 2a89e87

Please sign in to comment.