Skip to content

Commit

Permalink
chore(ci): fix failing arm builds (#14022)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwanthgoli authored Sep 2, 2024
1 parent 33c26f4 commit 281407f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ingester-kafka/kafka/kafka_tee.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func NewTee(
// When a Produce request to Kafka fail, the client will retry up until the RecordDeliveryTimeout is reached.
// Once the timeout is reached, the Produce request will fail and all other buffered requests in the client
// (for the same partition) will fail too. See kgo.RecordDeliveryTimeout() documentation for more info.
kgo.RecordRetries(math.MaxInt64),
kgo.RecordRetries(math.MaxInt),
kgo.RecordDeliveryTimeout(time.Minute),
kgo.ProduceRequestTimeout(time.Minute),
kgo.RequestTimeoutOverhead(time.Minute),
Expand Down

0 comments on commit 281407f

Please sign in to comment.