Skip to content

Commit a9fe904

Browse files
committed
assume no alerts retry topics by default
This minimizes the Kafka load for non production environments. BACK-2559
1 parent d510d05 commit a9fe904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/service/service/standard.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ func (s *Standard) initializeAlertsEventsHandler() error {
530530
if err := cfg.Load(loader); err != nil {
531531
return errors.Wrap(err, "unable to alerts retry delays config")
532532
}
533-
delays, err := parseCommaSeparatedDurations(reporter.GetWithDefault("delays", "1s"))
533+
delays, err := parseCommaSeparatedDurations(reporter.GetWithDefault("delays", "0s"))
534534
if err != nil {
535535
return errors.Wrap(err, "Unable to read configured alerts retry delays")
536536
}

0 commit comments

Comments
 (0)