commit | 6b7e6aba634ce6c7a7c59f72e8b4bdfda1adbb2b | [log] [tgz] |
---|---|---|
author | Alexandr Lovtsov <alovtsov@mirantis.com> | Thu Apr 02 17:20:02 2020 +0300 |
committer | Alexandr Lovtsov <alovtsov@mirantis.com> | Thu Apr 02 17:20:02 2020 +0300 |
tree | c44b3f964a528a37e4b7959ee5b761fa999381bb | |
parent | 9eaf25c83109931ecba25c8cf0c45b874fe0888c [diff] |
Fix extractJIRA() function in Atlassian.groovy Related-To: PRODX-3678 Change-Id: I622ab7ed220c2f838dc208abb5b5b9eb90da0a0e
diff --git a/src/com/mirantis/mk/Atlassian.groovy b/src/com/mirantis/mk/Atlassian.groovy index ef28862..a3f08dc 100644 --- a/src/com/mirantis/mk/Atlassian.groovy +++ b/src/com/mirantis/mk/Atlassian.groovy
@@ -46,7 +46,7 @@ **/ List extractJIRA(String commitMsg, String matcherRegex = '([A-Z]+-[0-9]+)') { - String msg = commitMsg.decodeBase64() + String msg = new String(commitMsg.decodeBase64()) def matcher = (msg =~ matcherRegex) List tickets = []