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 <[email protected]> Authored: Tue Aug 22 22:09:43 2017 -0500 Committer: Sean Busbey <[email protected]> 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."
