Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dev-support/hbase-personality.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function personality_modules
fi

if [[ -n "${HADOOP_PROFILE}" ]]; then
extra="${extra} -Phadoop-${HADOOP_PROFILE}"
extra="${extra} -Dhadoop.profile=${HADOOP_PROFILE}"
fi

# BUILDMODE value is 'full' when there is no patch to be tested, and we are running checks on
Expand Down Expand Up @@ -459,7 +459,7 @@ function shadedjars_rebuild
'-Dtest=NoUnitTests' '-DHBasePatchProcess' '-Prelease'
'-Dmaven.javadoc.skip=true' '-Dcheckstyle.skip=true' '-Dspotbugs.skip=true')
if [[ -n "${HADOOP_PROFILE}" ]]; then
maven_args+=("-Phadoop-${HADOOP_PROFILE}")
maven_args+=("-Dhadoop.profile=${HADOOP_PROFILE}")
fi

# disabled because "maven_executor" needs to return both command and args
Expand Down Expand Up @@ -644,7 +644,7 @@ function hadoopcheck_rebuild
$(maven_executor) clean install \
-DskipTests -DHBasePatchProcess \
-Dhadoop-three.version="${hadoopver}" \
-Phadoop-3.0
-Dhadoop.profile="3.0"
count=$(${GREP} -c '\[ERROR\]' "${logfile}")
if [[ ${count} -gt 0 ]]; then
add_vote_table -1 hadoopcheck "${BUILDMODEMSG} causes ${count} errors with Hadoop v${hadoopver}."
Expand Down