Skip to content

Commit

Permalink
SPARK-4507: try to resolve issue when no JIRAs in title
Browse files Browse the repository at this point in the history
  • Loading branch information
hase1031 committed Nov 29, 2014
1 parent 401224c commit bf6d64b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev/merge_spark_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ def get_version_json(version_str):
def resolve_jira_issues(title, merge_branches, comment):
jira_ids = re.findall("SPARK-[0-9]{4,5}", title)

if len(jira_ids) == 0:
resolve_jira_issue(merge_branches, comment)
for jira_id in jira_ids:
resolve_jira_issue(merge_branches, comment, jira_id)

Expand Down

0 comments on commit bf6d64b

Please sign in to comment.