Skip to content

Commit 504566f

Browse files
committed
Use simplified solution from #1609 for the data race
Signed-off-by: György Krajcsovits <[email protected]>
1 parent dc8e9a4 commit 504566f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

prometheus/histogram.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -1673,6 +1673,7 @@ func makeNativeExemplars(ttl time.Duration, maxCount int) nativeExemplars {
16731673

16741674
if maxCount < 0 {
16751675
maxCount = 0
1676+
ttl = -1
16761677
}
16771678

16781679
return nativeExemplars{
@@ -1682,13 +1683,13 @@ func makeNativeExemplars(ttl time.Duration, maxCount int) nativeExemplars {
16821683
}
16831684

16841685
func (n *nativeExemplars) addExemplar(e *dto.Exemplar) {
1685-
n.Lock()
1686-
defer n.Unlock()
1687-
1688-
if cap(n.exemplars) == 0 {
1686+
if n.ttl == -1 {
16891687
return
16901688
}
16911689

1690+
n.Lock()
1691+
defer n.Unlock()
1692+
16921693
// The index where to insert the new exemplar.
16931694
var nIdx int = -1
16941695

0 commit comments

Comments
 (0)