Fix scrape timeout in config.

The scrape timeout helper was wrapping the scrape interval.
This commit is contained in:
Fabian Reinartz 2015-04-15 13:46:27 +02:00
parent 49d67fc834
commit 0280d74167
1 changed files with 1 additions and 1 deletions

View File

@ -163,5 +163,5 @@ func (c JobConfig) ScrapeInterval() time.Duration {
// ScrapeTimeout gets the scrape timeout for a job.
func (c JobConfig) ScrapeTimeout() time.Duration {
return stringToDuration(c.GetScrapeInterval())
return stringToDuration(c.GetScrapeTimeout())
}