-
Notifications
You must be signed in to change notification settings - Fork 164
Fix gzip test wrt changing versions of libz #256
New issue
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
Conversation
See #253 for discussion. There are changes to produce.ex here but they are only formatting and refactoring that made it easier to reason about this problem.
| def create_request( | ||
| correlation_id, | ||
| client_id, | ||
| request = %Request{compression: compression, messages: messages} |
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.
File has the variable name before the pattern while most of the files have the variable name after the pattern when naming parameter pattern matches
|
Ebert has finished reviewing this Pull Request and has found:
You can see more details about this review at https://ebertapp.io/github/kafkaex/kafka_ex/pulls/256. |
| message_set | ||
| ) do | ||
| KafkaEx.Protocol.create_request(:produce, correlation_id, client_id) <> | ||
| << required_acks :: 16-signed, timeout :: 32-signed, 1 :: 32-signed >> <> |
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.
weird indentation here
joshuawscott
left a comment
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.
Seems ok to me, a little ugly, but not sure what else we'd do.
Fix gzip test wrt changing versions of libz
See #253 for discussion. There are changes to produce.ex here but they
are only formatting and refactoring that made it easier to reason about
this problem.