This is an automated email from the ASF dual-hosted git repository.
iwasakims pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.2 by this push:
new f9b5366be78 HADOOP-18251. Fix failure of extracting JIRA id from
commit message in git_jira_fix_version_check.py. (#4344)
f9b5366be78 is described below
commit f9b5366be7893981d904d2471e89899053780806
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Thu May 26 12:23:30 2022 +0900
HADOOP-18251. Fix failure of extracting JIRA id from commit message in
git_jira_fix_version_check.py. (#4344)
(cherry picked from commit 6b331dde31cec2676a93406c9ecf699fc0675c8c)
---
dev-support/git-jira-validation/git_jira_fix_version_check.py | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/dev-support/git-jira-validation/git_jira_fix_version_check.py
b/dev-support/git-jira-validation/git_jira_fix_version_check.py
index c2e12a13aae..513cc8e25ff 100644
--- a/dev-support/git-jira-validation/git_jira_fix_version_check.py
+++ b/dev-support/git-jira-validation/git_jira_fix_version_check.py
@@ -71,10 +71,9 @@ for commit in subprocess.check_output(['git', 'log',
'--pretty=oneline']).decode
print("Commit seems reverted. \t\t\t Commit: " + commit)
continue
ACTUAL_PROJECT_JIRA = None
- for project_jira in project_jira_keys:
- if project_jira in commit:
- ACTUAL_PROJECT_JIRA = project_jira
- break
+ matches = re.findall('|'.join(project_jira_keys), commit)
+ if matches:
+ ACTUAL_PROJECT_JIRA = matches[0]
if not ACTUAL_PROJECT_JIRA:
print("WARN: Jira not found. \t\t\t Commit: " + commit)
continue
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]