Skip to content

Commit

Permalink
Remove s
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Mar 30, 2024
1 parent 87e9eed commit c5dc0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kafkalib/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (b *BatchWriter) WriteRawMessages(ctx context.Context, rawMsgs []lib.RawMes
for _, rawMsg := range rawMsgs {
kafkaMsg, err := newMessage(b.cfg.TopicPrefix, rawMsg)
if err != nil {
return fmt.Errorf("failed to encode kafka messages: %w", err)
return fmt.Errorf("failed to encode kafka message: %w", err)
}
msgs = append(msgs, kafkaMsg)
}
Expand Down

0 comments on commit c5dc0e9

Please sign in to comment.