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/22 06:01:55 UTC

hbase git commit: HBASE-18467 maybe pattern isn't a Pattern?

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 02d3bc6bd -> 0906d33c8


HBASE-18467 maybe pattern isn't a Pattern?


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

Branch: refs/heads/HBASE-18467
Commit: 0906d33c8e25d656e13d0ee3c8d5ff03af419ec9
Parents: 02d3bc6
Author: Sean Busbey <bu...@apache.org>
Authored: Tue Aug 22 01:01:36 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Tue Aug 22 01:01:36 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/0906d33c/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index b8b9720..8876e5f 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -408,9 +408,9 @@ END
              echo "     ${change.author}"
              echo ""
              def pattern = /HBASE-[0-9]+/
-             echo "pattern: ${pattern}"
+             echo "pattern (${pattern.class}): ${pattern}"
              echo "eachMatch:"
-             def matches = msg.eachMatch(pattern) {
+             msg.eachMatch(pattern) {
                echo "	${it}"
              }
              echo "/eachMatch"