OOZIE-2570 remove -PtestPatchCompile from patch testing as there is no such profile (gezapeti via rkanter)
diff --git a/bin/test-patch-10-compile b/bin/test-patch-10-compile
index f13aed4..949a46c 100755
--- a/bin/test-patch-10-compile
+++ b/bin/test-patch-10-compile
@@ -101,7 +101,7 @@
 
 case $OP in
   pre)
-    mvn clean test -PtestPatchCompile -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-clean.txt >> $STDOUT
+    mvn clean test -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-clean.txt >> $STDOUT
     if [[ ${PIPESTATUS[0]} == 0 ]] ; then
       echo "{color:green}+1{color} HEAD compiles" >> ${TEMPDIR}/${TASKNAME}-compile.txt
     else
@@ -109,7 +109,7 @@
     fi
     ;;
   post)
-    mvn clean test -PtestPatchCompile -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-patch.txt >> $STDOUT
+    mvn clean test -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-patch.txt >> $STDOUT
     if [[ ${PIPESTATUS[0]} == 0 ]] ; then
       echo "{color:green}+1{color} patch compiles" >> ${TEMPDIR}/${TASKNAME}-compile.txt
     else
diff --git a/release-log.txt b/release-log.txt
index b585a27..40b698b 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2570 remove -PtestPatchCompile from patch testing as there is no such profile (gezapeti via rkanter)
 OOZIE-2504 Create a log4j.properties under HADOOP_CONF_DIR in Shell Action (harsh)
 OOZIE-2567 HCat connection is not closed while getting hcat cred (puru)
 OOZIE-2547 Add mapreduce.job.cache.files to spark action (satishsaley via rohini)