remove last "retry-period" occurences

This commit is contained in:
ppom
2023-10-18 12:00:00 +02:00
parent a70f1ac424
commit 22ac3764e4
2 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ func (c *Conf) setup() {
// Parse Duration
if filter.RetryPeriod == "" {
if filter.Retry > 1 {
logger.Fatalln("Bad configuration: retry but no retry-duration in", stream.name, ".", filter.name)
logger.Fatalln("Bad configuration: retry but no retryduration in", stream.name, ".", filter.name)
}
} else {
retryDuration, err := time.ParseDuration(filter.RetryPeriod)