Merge pull request #832 from prometheus/fabxc/target-test

retrieval: double timeout in target scrape test.
This commit is contained in:
Fabian Reinartz 2015-06-25 17:23:52 +02:00
commit 080e067601

View file

@ -293,7 +293,7 @@ func TestTargetScrapeTimeout(t *testing.T) {
)
defer server.Close()
testTarget := newTestTarget(server.URL, 25*time.Millisecond, clientmodel.LabelSet{})
testTarget := newTestTarget(server.URL, 50*time.Millisecond, clientmodel.LabelSet{})
appender := nopAppender{}
@ -304,7 +304,7 @@ func TestTargetScrapeTimeout(t *testing.T) {
}
// let the deadline lapse
time.Sleep(30 * time.Millisecond)
time.Sleep(55 * time.Millisecond)
// now scrape again
signal <- true