feat(alerting): increase timeout to 15s

This commit is contained in:
bergquist 2016-09-26 08:45:55 +02:00
parent 501e67a657
commit 8cd9225eb6
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ type DefaultEvalHandler struct {
func NewEvalHandler() *DefaultEvalHandler {
return &DefaultEvalHandler{
log: log.New("alerting.evalHandler"),
alertJobTimeout: time.Second * 10,
alertJobTimeout: time.Second * 15,
}
}

View File

@ -38,7 +38,7 @@ func init() {
}
HttpClient = http.Client{
Timeout: time.Duration(10 * time.Second),
Timeout: time.Duration(15 * time.Second),
Transport: tr,
}
}