mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
Merge pull request #1348 from prometheus/notifytestfix
Increase notification test timeouts
This commit is contained in:
commit
2e29573770
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue