style(alerting): rename max retries

This commit is contained in:
bergquist
2016-06-13 14:54:06 +02:00
parent 3ad90c389c
commit ca33622698
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ type AlertJob struct {
}
func (aj *AlertJob) Retryable() bool {
return aj.RetryCount < maxRetries
return aj.RetryCount < maxAlertExecutionRetries
}
func (aj *AlertJob) ResetRetry() {