Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 f97330a16 -> c5019ee5c


HBASE-18467 figure out what part of findAll is failing.


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

Branch: refs/heads/HBASE-18467
Commit: c5019ee5ce235649737d661dd26d218bb9f181df
Parents: f97330a
Author: Sean Busbey <bus...@apache.org>
Authored: Tue Aug 22 00:24:33 2017 -0500
Committer: Sean Busbey <bus...@apache.org>
Committed: Tue Aug 22 00:24:33 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/c5019ee5/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index e247fa8..47f2665 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -409,7 +409,9 @@ END
              echo "    ${change.commitId}"
              echo "     ${change.author}"
              echo ""
-             def matches = msg.findAll( /HBASE-[0-9]+/ )
+             def pattern = /HBASE-[0-9]+/
+             echo "pattern: ${pattern}"
+             def matches = msg.findAll(pattern)
              echo "matches: ${matches}"
              matches.each { foo ->
                echo "  ${foo}"

Reply via email to