Skip to content

Commit

Permalink
Merge branch 'master' into new-report
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbourgon committed Jun 3, 2015
2 parents 8d88107 + bba5222 commit 71523fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions probe/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,16 @@ func main() {

taggers := []tag.Tagger{tag.NewTopologyTagger()}
if *dockerTagger {
taggers = append(taggers, tag.NewDockerTagger(*procRoot, *dockerInterval))
t := tag.NewDockerTagger(*procRoot, *dockerInterval)
defer t.Stop()
taggers = append(taggers, t)
}

log.Printf("listening on %s", *listen)

quit := make(chan struct{})
defer close(quit)

go func() {
var (
hostname = hostname()
Expand Down

0 comments on commit 71523fb

Please sign in to comment.