Skip to content

Commit afff20c

Browse files
chore: fix linting issue (#4424)
1 parent a83a041 commit afff20c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/impl/kafka/franz_writer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ func FranzProducerLimitsOptsFromConfig(conf *service.ParsedConfig) ([]kgo.Opt, e
210210
var maxBufferedBytes uint64
211211
maxBufferedBytes, err = humanize.ParseBytes(maxBufferedBytesStr)
212212
if err != nil {
213-
return nil, fmt.Errorf("failed to parse max_buffered_bytes: %w", err)
213+
return nil, fmt.Errorf("parsing max_buffered_bytes: %w", err)
214214
}
215215
if maxBufferedBytes > uint64(math.MaxInt) {
216216
return nil, fmt.Errorf("invalid max_buffered_bytes, must not exceed %v", math.MaxInt)

0 commit comments

Comments
 (0)