mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-05 04:16:15 +02:00
Merge pull request #180 from prometheus/fixbugz
Fix race in symbol table re-creation
This commit is contained in:
commit
7bc07d80b6
2
head.go
2
head.go
@ -665,7 +665,7 @@ func (h *Head) gc() {
|
||||
// Rebuild symbols and label value indices from what is left in the postings terms.
|
||||
h.postings.mtx.RLock()
|
||||
|
||||
symbols := make(map[string]struct{}, len(h.symbols))
|
||||
symbols := make(map[string]struct{})
|
||||
values := make(map[string]stringset, len(h.values))
|
||||
|
||||
for t := range h.postings.m {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user