Merge pull request #1348 from prometheus/notifytestfix

Increase notification test timeouts
This commit is contained in:
Fabian Reinartz 2016-01-27 02:50:03 +01:00
commit 2e29573770
2 changed files with 2 additions and 3 deletions

View file

@ -274,7 +274,6 @@ func (n *Handler) send(alerts ...*model.Alert) error {
func (n *Handler) Stop() {
log.Info("Stopping notification handler...")
close(n.more)
n.cancel()
}

View file

@ -192,7 +192,7 @@ func TestHandlerFull(t *testing.T) {
case <-called:
expected = alerts[i*maxBatchSize : (i+1)*maxBatchSize]
unblock <- struct{}{}
case <-time.After(time.Second):
case <-time.After(5 * time.Second):
t.Fatalf("Alerts were not pushed")
}
}
@ -218,7 +218,7 @@ func TestHandlerFull(t *testing.T) {
case <-called:
expected = alerts[i*maxBatchSize : (i+1)*maxBatchSize]
unblock <- struct{}{}
case <-time.After(time.Second):
case <-time.After(5 * time.Second):
t.Fatalf("Alerts were not pushed")
}
}