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 04:29:51 UTC

hbase git commit: HBASE-18467 has to be the charsequence version, not the string version. :rolling_eyes_cat:

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 7fd820063 -> f659408bd


HBASE-18467 has to be the charsequence version, not the string version. :rolling_eyes_cat:


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

Branch: refs/heads/HBASE-18467
Commit: f659408bd0164a9ea98ea1b2aa1ed7f1201f5e02
Parents: 7fd8200
Author: Sean Busbey <bu...@apache.org>
Authored: Tue Aug 22 23:29:32 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Tue Aug 22 23:29:32 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/f659408b/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index ec868b2..8b564a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -409,7 +409,7 @@ END
                echo "     ${change.author}"
                echo ""
                // For now, only match the first occurrance of an HBase jira id, due to JENKINS-46358
-               currentIssue = org.codehaus.groovy.runtime.StringGroovyMethods.find(msg, /HBASE-[0-9]+/)
+               currentIssue = org.codehaus.groovy.runtime.StringGroovyMethods.find((CharSequence)(msg), (CharSequence)(/HBASE-[0-9]+/))
                if (currentIssue != null ) {
                  echo "[DEBUG] found jira key: ${currentIssue}"
                  if ( currentIssue in seenJiras ) {