plugin/metrcs: fix datarace on listeners (#2835)
This fixes a data race on the listener(s) that get started in the metrics plugins. It also restore pkg/uniq to its former glory and removes and state being carried in there; this means for metrics that registry.go was to replicate that behavior *with* locking (as pkg/uniq doesn't do, or need that). Also renamed uniqAddr to just u, to make it slightly shorter. Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
d41e9ff7b7
commit
118b0c9408
6 changed files with 62 additions and 30 deletions
|
@ -24,7 +24,7 @@ func setup(c *caddy.Controller) error {
|
|||
|
||||
rd := &ready{Addr: addr}
|
||||
|
||||
uniqAddr.Set(addr, rd.onStartup, rd)
|
||||
uniqAddr.Set(addr, rd.onStartup)
|
||||
|
||||
c.OncePerServerBlock(func() error {
|
||||
c.OnStartup(func() error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue