Increase notification test timeouts

This commit is contained in:
Fabian Reinartz 2016-01-25 18:31:54 +01:00
parent 40ab0da398
commit 41a39472a1
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() { func (n *Handler) Stop() {
log.Info("Stopping notification handler...") log.Info("Stopping notification handler...")
close(n.more)
n.cancel() n.cancel()
} }

View File

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