Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kimtore committed Oct 1, 2024
1 parent 8f20974 commit 796e7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/kafka/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (k *Kafka) Handler() func(http.ResponseWriter, *http.Request) {

c, err := consumer.ConsumePartition(k.topic, p, o)
if err != nil {
log.Errorf("could not consume partition (%s) from topic (%s): %s", p, k.topic, err)
log.Errorf("could not consume partition (%d) from topic (%s): %s", p, k.topic, err)
w.WriteHeader(http.StatusInternalServerError)
return
}
Expand Down

0 comments on commit 796e7ee

Please sign in to comment.