-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
HADOOP-18269. Misleading method name in DistCpOptions. #4216
HADOOP-18269. Misleading method name in DistCpOptions. #4216
Conversation
🎊 +1 overall
This message was automatically generated. |
api is tagged as @InterfaceAudience.Public;; we can't remove the existing method. you could add a new one with the better name and mark the old one as deprecated |
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.
made minor suggestion, otherwise all good. i don't see us breaking anything.
hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/DistCpOptions.java
Show resolved
Hide resolved
🎊 +1 overall
This message was automatically generated. |
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.
+1
Contributed by guophilipse Change-Id: I5e75d030406997339c20e970483825e529d9cd10
merged to trunk and branch-3.3. thanks |
(oh, and moved to being a hadoop- jira, rather than HDFS. always a bit confusing there as hdfs jira does have a distcp component in its dropdowns). |
Thanks @steveloughran for your review and merge~ |
Contributed by guophilipse
Currently method in DistCpOptions withCRC was used as the following
which mislead the developer when we pass the paramter, we can rename the method to clear that.after that it should be:
so it will be more understandable.