Closed keep94 closed 8 years ago
Which version are you using? Your stack trace is saying that broker.go:816
is line where (*producer).produce
is called, but HEAD looks differently https://github.com/optiopay/kafka/blob/master/broker.go#L813-L816
Ill do a pull tomorrow
On Thursday, February 18, 2016, Piotr Husiatyński notifications@github.com wrote:
Which version are you using? Your stack trace is saying that broker.go:816 is line where (*producer).produce is called, but HEAD looks differently https://github.com/optiopay/kafka/blob/master/broker.go#L813-L816
— Reply to this email directly or view it on GitHub https://github.com/optiopay/kafka/issues/54#issuecomment-186071994.
After doing the pull, this problem went away. Closing.
Here is my code:
When I later call
It panics with the following:
Best I can tell is in broker.go around line 800, the call to
resp, err := conn.Produce(&req)
is probably returning both a nil resp and a nil error.