Skip to content

Commit

Permalink
assume no alerts retry topics by default
Browse files Browse the repository at this point in the history
This minimizes the Kafka load for non production environments.

BACK-2559
  • Loading branch information
ewollesen committed Feb 20, 2025
1 parent d510d05 commit a9fe904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/service/service/standard.go
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ func (s *Standard) initializeAlertsEventsHandler() error {
if err := cfg.Load(loader); err != nil {
return errors.Wrap(err, "unable to alerts retry delays config")
}
delays, err := parseCommaSeparatedDurations(reporter.GetWithDefault("delays", "1s"))
delays, err := parseCommaSeparatedDurations(reporter.GetWithDefault("delays", "0s"))
if err != nil {
return errors.Wrap(err, "Unable to read configured alerts retry delays")
}
Expand Down

0 comments on commit a9fe904

Please sign in to comment.