From 1c826339364638a9db2b87c60359f3e9912a21bb Mon Sep 17 00:00:00 2001 From: Gwen Shapira Date: Tue, 24 Mar 2015 16:46:34 -0700 Subject: [PATCH] SQOOP-2254: Failed to build release notes (Qian Xu via Gwen Shapira) (cherry picked from commit bbfa59a61cf7835034823d153817ecc5ab472e3c) --- src/scripts/relnotes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/relnotes.py b/src/scripts/relnotes.py index ae7780ee..cc540fad 100644 --- a/src/scripts/relnotes.py +++ b/src/scripts/relnotes.py @@ -83,7 +83,7 @@ def sanitize_log(in_log): def get_jira_doc(issue): """ Get the XML document from JIRA for a specified issue. """ - xml = os.popen("curl -s 'https://issues.cloudera.org/si/jira.issueviews:" \ + xml = os.popen("curl -s 'https://issues.apache.org/jira/si/jira.issueviews:" \ + "issue-xml/%s/%s.xml?field=key&field=type&field=parent'" % (issue, issue)).read() return ElementTree.fromstring(xml)