fix race in testutil Accumulator.Wait() (#2598)

This commit is contained in:
Patrick Hemmer 2017-03-29 20:03:06 -04:00 committed by Daniel Nelson
parent 71cdcee8b2
commit f13686bdf7
1 changed files with 2 additions and 2 deletions

View File

@ -43,9 +43,9 @@ func (a *Accumulator) NMetrics() uint64 {
}
func (a *Accumulator) ClearMetrics() {
atomic.StoreUint64(&a.nMetrics, 0)
a.Lock()
defer a.Unlock()
atomic.StoreUint64(&a.nMetrics, 0)
a.Metrics = make([]*Metric, 0)
}
@ -56,9 +56,9 @@ func (a *Accumulator) AddFields(
tags map[string]string,
timestamp ...time.Time,
) {
atomic.AddUint64(&a.nMetrics, 1)
a.Lock()
defer a.Unlock()
atomic.AddUint64(&a.nMetrics, 1)
if a.Cond != nil {
a.Cond.Broadcast()
}