-
Notifications
You must be signed in to change notification settings - Fork 60
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
Doc:Add attribute for kafka client versions #48
Doc:Add attribute for kafka client versions #48
Conversation
723623d
to
aaa06c1
Compare
Replaced hard-coded kafka client and doc path version numbers with attributes to simplify maintenance
aaa06c1
to
a515c2c
Compare
Depending on your broker configuration, this can be | ||
either when the record was created (default) or when it was received by the | ||
broker. See more about property log.message.timestamp.type at | ||
https://kafka.apache.org/{kafka_client_doc}/documentation.html#brokerconfigs |
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.
Yikes! Here's an oldie!
and | ||
https://kafka.apache.org/25/javadoc/org/apache/kafka/common/errors/InterruptException.html[InterruptException]. | ||
https://kafka.apache.org/{kafka_client_doc}/javadoc/org/apache/kafka/common/errors/InterruptException.html[InterruptException]. |
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.
This link using /25/
is from a recent PR. Seems like we should standardize it, too. WDYT?
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.
👍 most definitely - for correctness these should point to /24
till we upgrade the client
@kares I replaced the hard-coded values for kafka client and the kafka version in links with attributes. The goal is to have one place to set the values in each file. Then all of the other references will be updated automatically. |
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.
👍 this should help the next time we upgrade the client to not forget about docs
Thanks for the review, kares! <3 |
This PR is included in changelog/version bump for #46 |
Replaces hard-coded kafka client version with an attribute to make updating it easier