Author: omalley
Date: Tue Mar  8 06:00:13 2011
New Revision: 1079248

URL: http://svn.apache.org/viewvc?rev=1079248&view=rev
Log:
commit fc36fc217136e9bf1a4afddcf13b5dfc3463f7cf
Author: Mahadev Konar <[email protected]>
Date:   Tue Jan 18 16:32:49 2011 -0800

      : Make getCounter method in TaskFinishedEvent public for use in yarn 
components.
       (Krishna Ramachandran)
    
    +++ b/YAHOO-CHANGES.txt
    +
    +  . Make getCounter method in TaskFinishedEvent public for use in yarn 
components.
    +   (krishna ramachandran via mahadev)

Modified:
    
hadoop/mapreduce/branches/yahoo-merge/src/java/org/apache/hadoop/mapreduce/jobhistory/TaskFinishedEvent.java

Modified: 
hadoop/mapreduce/branches/yahoo-merge/src/java/org/apache/hadoop/mapreduce/jobhistory/TaskFinishedEvent.java
URL: 
http://svn.apache.org/viewvc/hadoop/mapreduce/branches/yahoo-merge/src/java/org/apache/hadoop/mapreduce/jobhistory/TaskFinishedEvent.java?rev=1079248&r1=1079247&r2=1079248&view=diff
==============================================================================
--- 
hadoop/mapreduce/branches/yahoo-merge/src/java/org/apache/hadoop/mapreduce/jobhistory/TaskFinishedEvent.java
 (original)
+++ 
hadoop/mapreduce/branches/yahoo-merge/src/java/org/apache/hadoop/mapreduce/jobhistory/TaskFinishedEvent.java
 Tue Mar  8 06:00:13 2011
@@ -67,7 +67,7 @@ public class TaskFinishedEvent implement
   /** Get the task finish time */
   public long getFinishTime() { return datum.finishTime; }
   /** Get task counters */
-  Counters getCounters() { return EventReader.fromAvro(datum.counters); }
+  public Counters getCounters() { return EventReader.fromAvro(datum.counters); 
}
   /** Get task type */
   public TaskType getTaskType() {
     return TaskType.valueOf(datum.taskType.toString());


Reply via email to