heetch / felice

Felice is a nascent, opinionated Kafka library for Go, in Go
MIT License
20 stars 1 forks source link

Wrong format for the `Produced-At` header #21

Closed asdine closed 5 years ago

asdine commented 5 years ago

Currently, the Produced-At is generated using time.Now().UTC().String() which produces a invalid format. We must use time.Now().UTC().Format(time.RFC3339) instead