This is an automated email from the ASF dual-hosted git repository.

yao pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 7864697a7b1 Revert "[SPARK-44813][INFRA] The Jira Python misses our 
assignee when it searches users again"
7864697a7b1 is described below

commit 7864697a7b1c7acb892d3107703750aa772b3298
Author: Kent Yao <y...@apache.org>
AuthorDate: Sat Aug 19 01:54:42 2023 +0800

    Revert "[SPARK-44813][INFRA] The Jira Python misses our assignee when it 
searches users again"
    
    This reverts commit f7dd0a95727259ff4b7a2f849798f8a93cf78b69.
---
 dev/merge_spark_pr.py | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/dev/merge_spark_pr.py b/dev/merge_spark_pr.py
index 6af3945bc57..6d86e918310 100755
--- a/dev/merge_spark_pr.py
+++ b/dev/merge_spark_pr.py
@@ -373,7 +373,7 @@ def choose_jira_assignee(issue, asf_jira):
                 except BaseException:
                     # assume it's a user id, and try to assign (might fail, we 
just prompt again)
                     assignee = asf_jira.user(raw_assignee)
-                assign_issue(issue.key, assignee.name)
+                asf_jira.assign_issue(issue.key, assignee.name)
                 return assignee
         except KeyboardInterrupt:
             raise
@@ -382,19 +382,6 @@ def choose_jira_assignee(issue, asf_jira):
             print("Error assigning JIRA, try again (or leave blank and fix 
manually)")
 
 
-def assign_issue(client: jira.client.JIRA, issue: int, assignee: str) -> bool:
-    """
-    Assign an issue to a user, which is a shorthand for 
jira.client.JIRA.assign_issue.
-    The original one has an issue that it will search users again and only 
choose the assignee
-    from 20 candidates. If it's unmatched, it picks the head blindly. In our 
case, the assignee
-    is already resolved.
-    """
-    url = getattr(client, "_get_latest_url")(f"issue/{issue}/assignee")
-    payload = {"name": assignee}
-    getattr(client, "_session").put(url, data=json.dumps(payload))
-    return True
-
-
 def resolve_jira_issues(title, merge_branches, comment):
     jira_ids = re.findall("SPARK-[0-9]{4,5}", title)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to