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:
Julien Pivotto 2020-07-11 15:37:13 +02:00 committed by GitHub
parent 6a00626ee9
commit 190addffd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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++
}