Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add changelog warning about syncproducer config
Mitigation for the quasi-breaking change as noted in #816.
- Loading branch information
30a4aff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eapache Am I right to assume that even though
Producer.Return.Successes
should be set to true, a listening from theSuccesses()
channel is not necessary? (As far I can tell,Successes()
is not even part of theSyncProducer
's interface.) If that's the case, I'm wondering whether such a clarification is necessary in the CHANGELOG as well.30a4aff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kchristidis You are right, there is no
Successes
channel to listen on for the sync producer. Looking at this again it's actually even a bit more complicated (Producer.Return.Errors
needs to be set as well). I'll open a ticket and put some notes there (edit: #854).30a4aff
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent, thank you for looking into it.