-
Notifications
You must be signed in to change notification settings - Fork 14.8k
MINOR: Fix incomplete Javadoc comments in storage module #20778
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
base: trunk
Are you sure you want to change the base?
Conversation
- Add missing @return description in ProducerManager.publishMessage() - Add missing @return description in RemoteLogMetadataCache.listAllRemoteLogSegments() - Add missing @throws description in LogDirFailureChannel.takeNextOfflineLogDir() All Javadoc tags now have proper descriptions following Apache Kafka documentation standards.
|
@atheendre130505 Thanks for the contribution. Could you follow the guide to modify PR title? Thanks. https://cwiki.apache.org/confluence/display/KAFKA/Contributing+Code+Changes |
|
A label of 'needs-attention' was automatically added to this PR in order to raise the |
|
@chia7712 @FrankYang0529 All checks have passed. Ready for merge. Thanks! |
|
A label of 'needs-attention' was automatically added to this PR in order to raise the |
This PR addresses incomplete Javadoc comments in the storage module. It
adds proper descriptions to all relevant Javadoc tags according to
Apache Kafka documentation standards:
Adds missing @return description in ProducerManager.publishMessage()
Adds missing @return description in
RemoteLogMetadataCache.listAllRemoteLogSegments()
Adds missing @throws description in
LogDirFailureChannel.takeNextOfflineLogDir()
No functional code changes are introduced. All updates are strictly to
improve code documentation clarity and compliance.