From a0ef69df269e5011b637d633c2102af857b3d2e0 Mon Sep 17 00:00:00 2001 From: Giridharan Kesavan Date: Thu, 15 Apr 2010 03:08:09 +0000 Subject: [PATCH] HADOOP-6705. Fix to work with 1.5 version of jiracli git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@934273 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 3 +++ src/test/bin/test-patch.sh | 6 ++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2056f9de78d..d74920022d6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -209,6 +209,9 @@ Trunk (unreleased changes) HADOOP-6566. Add methods supporting, enforcing narrower permissions on local daemon directories. (Arun Murthy and Luke Lu via cdouglas) + HADOOP-6705. Fix to work with 1.5 version of jiracli + (Giridharan Kesavan) + OPTIMIZATIONS HADOOP-6467. Improve the performance on HarFileSystem.listStatus(..). diff --git a/src/test/bin/test-patch.sh b/src/test/bin/test-patch.sh index 8741f116af5..034f5f9e6ce 100755 --- a/src/test/bin/test-patch.sh +++ b/src/test/bin/test-patch.sh @@ -632,12 +632,10 @@ $comment" echo "======================================================================" echo "" echo "" - ### Update Jira with a comment export USER=hudson - $JIRACLI -s issues.apache.org/jira login hadoopqa $JIRA_PASSWD - $JIRACLI -s issues.apache.org/jira comment $defect "$comment" - $JIRACLI -s issues.apache.org/jira logout + $JIRACLI -s https://issues.apache.org/jira -a addcomment -u hadoopqa -p $JIRA_PASSWD --comment "$comment" --issue $defect + $JIRACLI -s https://issues.apache.org/jira -a logout -u hadoopqa -p $JIRA_PASSWD fi }