We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94173f8 + 052b850 commit 20880c3Copy full SHA for 20880c3
config.go
@@ -679,7 +679,7 @@ func (c *Config) Validate() error {
679
case c.Consumer.Retry.Backoff < 0:
680
return ConfigurationError("Consumer.Retry.Backoff must be >= 0")
681
case c.Consumer.Offsets.AutoCommit.Interval <= 0:
682
- return ConfigurationError("Consumer.Offsets.CommitInterval must be > 0")
+ return ConfigurationError("Consumer.Offsets.AutoCommit.Interval must be > 0")
683
case c.Consumer.Offsets.Initial != OffsetOldest && c.Consumer.Offsets.Initial != OffsetNewest:
684
return ConfigurationError("Consumer.Offsets.Initial must be OffsetOldest or OffsetNewest")
685
case c.Consumer.Offsets.Retry.Max < 0:
0 commit comments