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 03:09:56 UTC

hbase git commit: HBASE-18467 switch to using hte java class for Pattern.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 d0277b3c6 -> be8c7a974


HBASE-18467 switch to using hte java class for Pattern.


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

Branch: refs/heads/HBASE-18467
Commit: be8c7a974d520b0f213726b58a11cae44ea9c23c
Parents: d0277b3
Author: Sean Busbey <bu...@apache.org>
Authored: Tue Aug 22 22:09:43 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Tue Aug 22 22:09:43 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/be8c7a97/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 059a444..fb896ad 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -394,7 +394,7 @@ END
            echo ""
            echo "[INFO] There are ${currentBuild.changeSets.size()} change sets."
            def seenJiras = []
-           def jiraPattern = ~/HBASE-[0-9]+/
+           def jiraPattern = java.util.regex.Pattern.compile(/HBASE-[0-9]+/)
            for ( changelist in currentBuild.changeSets ) {
              if ( changelist.isEmptySet() ) {
                echo "[DEBUG] change set was empty, skipping JIRA comments."