GuoPhilipse opened a new pull request, #4216: URL: https://github.com/apache/hadoop/pull/4216
Currently method in DistCpOptions withCRC was used as the following ``` withCRC(true) means check without crc withCRC(false) means check with crc ``` which mislead the developer when we pass the paramter, we can rename the method to clear that.after that it should be: ``` withSkipCRC(true) means check without crc withSkipCRC(false) means check with crc ``` so it will be more understandable. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
