@@ -94,6 +94,9 @@ Release 0.16.1 - Unrelease
HADOOP-2814. Fix for NPE in datanode in unit test TestDataTransferProtocol.
(Raghu Angadi via dhruba)
+ HADOOP-2811. Dump of counters in job history does not add comma between
+ groups. (runping via omalley)
+
Release 0.16.0 - 2008-02-07
INCOMPATIBLE CHANGES
@@ -519,8 +519,8 @@ public class Counters implements Writable, Iterable<Counters.Group> {
*/
public synchronized String makeCompactString() {
StringBuffer buffer = new StringBuffer();
- for(Group group: this){
- boolean first = true;
+ boolean first = true;
+ for(Group group: this){
for(Counter counter: group) {
if (first) {
first = false;