Details
Description
appy noticed on HBASE-18624 that our check for Hadoop annotations failed to flag a use.
looking at our check:
warnings=$(${GREP} 'import org.apache.hadoop.classification' "${patchfile}") if [[ ${warnings} -gt 0 ]]; then add_vote_table -1 hbaseanti "" "The patch appears use Hadoop classification instead of HBase: ${warnings}." ((result=result+1)) fi
That should have been a "grep -c" and not a "grep". So we've been falsely giving a negative on all these checks.