guophilipse created HDFS-16555: ---------------------------------- Summary: rename mixlead method name in DistCpOptions Key: HDFS-16555 URL: https://issues.apache.org/jira/browse/HDFS-16555 Project: Hadoop HDFS Issue Type: Improvement Components: distcp Affects Versions: 3.3.2 Reporter: guophilipse
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 message was sent by Atlassian Jira (v8.20.7#820007) --------------------------------------------------------------------- To unsubscribe, e-mail: hdfs-dev-unsubscr...@hadoop.apache.org For additional commands, e-mail: hdfs-dev-h...@hadoop.apache.org