mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 21:54:10 -08:00
Change Scrape Loop mtx to Mutex (#7553)
It was still RWLock but we never use the read lock.. Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
parent
6a00626ee9
commit
190addffd8
|
@ -161,7 +161,7 @@ type scrapePool struct {
|
|||
appendable storage.Appendable
|
||||
logger log.Logger
|
||||
|
||||
mtx sync.RWMutex
|
||||
mtx sync.Mutex
|
||||
config *config.ScrapeConfig
|
||||
client *http.Client
|
||||
// Targets and loops must always be synchronized to have the same
|
||||
|
@ -1188,7 +1188,7 @@ loop:
|
|||
}
|
||||
|
||||
// Increment added even if there's an error so we correctly report the
|
||||
// number of samples remaining after relabelling.
|
||||
// number of samples remaining after relabeling.
|
||||
added++
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue