Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 33035 invoked from network); 16 Dec 2008 19:43:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Dec 2008 19:43:14 -0000 Received: (qmail 42709 invoked by uid 500); 16 Dec 2008 19:43:20 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 42674 invoked by uid 500); 16 Dec 2008 19:43:20 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 42649 invoked by uid 99); 16 Dec 2008 19:43:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Dec 2008 11:43:20 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Dec 2008 19:43:07 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4F5B7234C3F3 for ; Tue, 16 Dec 2008 11:42:47 -0800 (PST) Message-ID: <24624467.1229456567324.JavaMail.jira@brutus> Date: Tue, 16 Dec 2008 11:42:47 -0800 (PST) From: "Owen O'Malley (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Assigned: (HADOOP-4879) TestJobTrackerRestart fails on trunk In-Reply-To: <1554182751.1229419244246.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-4879?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Owen O'Malley reassigned HADOOP-4879: ------------------------------------- Assignee: Owen O'Malley (was: Arun C Murthy) > TestJobTrackerRestart fails on trunk > ------------------------------------ > > Key: HADOOP-4879 > URL: https://issues.apache.org/jira/browse/HADOOP-4879 > Project: Hadoop Core > Issue Type: Bug > Components: mapred, test > Affects Versions: 0.20.0 > Reporter: Arun C Murthy > Assignee: Owen O'Malley > Priority: Blocker > Fix For: 0.20.0 > > Attachments: h4879.patch, HADOOP-4879-v1.patch > > > HADOOP-1230 changed the definition of TaskReport.equals: > {noformat} > @@ -172,7 +172,7 @@ > return false; > if(o.getClass().equals(TaskReport.class)) { > TaskReport report = (TaskReport) o; > - return counters.contentEquals(report.getCounters()) > + return counters.equals(report.getCounters()) > {noformat} > This results in: > {noformat} > Testcase: testJobTrackerRestart took 473.926 sec > FAILED > Task reports for same attempt has changed > junit.framework.AssertionFailedError: Task reports for same attempt has changed > at org.apache.hadoop.mapred.TestJobTrackerRestart.testTaskReports(TestJobTrackerRestart.java:514) > at org.apache.hadoop.mapred.TestJobTrackerRestart.testTaskEventsAndReportsWithRecovery(TestJobTrackerRestart.java:447) > at org.apache.hadoop.mapred.TestJobTrackerRestart.testJobTrackerRestart(TestJobTrackerRestart.java:599) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.