git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1@1434995 13f79535-47bb-0310-9956-ffa450edef68
@@ -437,6 +437,8 @@ Release 1.2.0 - unreleased
MAPREDUCE-4315. jobhistory.jsp throws 500 when a .txt file is found in /done.
(sandyr via tucu)
+ MAPREDUCE-4923. Add toString method to TaggedInputSplit. (sandyr via tucu)
+
Release 1.1.2 - Unreleased
INCOMPATIBLE CHANGES
@@ -137,4 +137,9 @@ class TaggedInputSplit implements Configurable, InputSplit {
this.conf = conf;
}
+ @Override
+ public String toString() {
+ return inputSplit.toString();
+ }
@@ -156,4 +156,9 @@ class TaggedInputSplit extends InputSplit implements Configurable, Writable {