We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
1 clone this repository 2 go to _examples/sarama dir 3 modify it to be up to date 4 go run main.go
_examples/sarama
go run main.go
everything is fine so far
5 change go.mod's sarama version to, say, v1.26.1 6 get out of memory error
v1.26.1
The error is happening here https://github.com/travisjeffery/jocko/blob/master/protocol/decoder.go#L277 because this conversion https://github.com/travisjeffery/jocko/blob/master/protocol/decoder.go#L266 makes n to be 4294967295, which is probably because sarama changed endianness in their protocol.
n
4294967295
The text was updated successfully, but these errors were encountered:
The issue appears in 1.17.0 version of sarama. 1.16.0 still works.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
1 clone this repository
2 go to
_examples/sarama
dir3 modify it to be up to date
4
go run main.go
everything is fine so far
5 change go.mod's sarama version to, say,
v1.26.1
6 get out of memory error
The error is happening here https://github.com/travisjeffery/jocko/blob/master/protocol/decoder.go#L277 because this conversion https://github.com/travisjeffery/jocko/blob/master/protocol/decoder.go#L266 makes
n
to be4294967295
, which is probably because sarama changed endianness in their protocol.The text was updated successfully, but these errors were encountered: