Hualong Zhang created HADOOP-18280: -------------------------------------- Summary: Fix typos in the definition of zstd Key: HADOOP-18280 URL: https://issues.apache.org/jira/browse/HADOOP-18280 Project: Hadoop Common Issue Type: Improvement Components: common Reporter: Hualong Zhang
There are some typos in file *hadoop-common/pom.xml* and *ZStandardCompressor.c* hadoop-common/pom.xml: {code:xml|title=pom.xml|borderStyle=solid} <require.ztsd>false</require.ztsd> <argument>/p:RequireZstd=${require.ztsd}</argument> {code} The correct print as follows: {code:xml} <require.zstd>false</require.zstd> <argument>/p:RequireZstd=${require.zstd}</argument> {code} ZStandardCompressor.c: {code:c|title=ZStandardCompressor.c|borderStyle=solid} // Load the libztsd.so from disk {code} The correct print as follows: {code:c} // Load the libzstd.so from disk {code} -- This message was sent by Atlassian Jira (v8.20.7#820007) --------------------------------------------------------------------- To unsubscribe, e-mail: common-dev-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-dev-h...@hadoop.apache.org