You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/08/23 01:30:49 UTC

hbase git commit: HBASE-18467 use single find as a work around.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 600807769 -> 31b3141e9


HBASE-18467 use single find as a work around.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/31b3141e
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/31b3141e
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/31b3141e

Branch: refs/heads/HBASE-18467
Commit: 31b3141e90573ae8a15dad40dfc72bdd8051bac7
Parents: 6008077
Author: Sean Busbey <bu...@apache.org>
Authored: Tue Aug 22 20:19:11 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Tue Aug 22 20:19:11 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/31b3141e/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 08621d6..a5e4d2d 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -17,9 +17,9 @@
 pipeline {
   agent {
     node {
-      label 'Hadoop'
+//      label 'Hadoop'
 // temp go to ubuntu since it seems like no one uses those
-//      label 'ubuntu'
+      label 'ubuntu'
     }
   }
   triggers {
@@ -408,7 +408,8 @@ END
                echo "	${change.commitId}"
                echo "     ${change.author}"
                echo ""
-               msg.findAll( /HBASE-[0-9]+/ ).each { currentIssue ->
+               // For now, only match the first occurrance of an HBase jira id, due to JENKINS-46358
+               msg.find( /HBASE-[0-9]+/ ) { currentIssue ->
                  echo "[DEBUG] found jira key: ${currentIssue}"
                  if ( currentIssue in seenJiras ) {
                    echo "[DEBUG] already commented on ${currentIssue}."