HDFS-3925. Prettify PipelineAck#toString() for printing to a log. Contributed by Andrew Wang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1384078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f0c3ed79dd
commit
80a8d57ffc
|
@ -225,6 +225,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
(Jaimin D Jetly and Jing Zhao via szetszwo)
|
||||
|
||||
IMPROVEMENTS
|
||||
|
||||
HDFS-3925. Prettify PipelineAck#toString() for printing to a log
|
||||
(Andrew Wang via todd)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos;
|
|||
import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.PipelineAckProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status;
|
||||
|
||||
import com.google.protobuf.TextFormat;
|
||||
|
||||
/** Pipeline Acknowledgment **/
|
||||
@InterfaceAudience.Private
|
||||
@InterfaceStability.Evolving
|
||||
|
@ -120,6 +122,6 @@ public class PipelineAck {
|
|||
|
||||
@Override //Object
|
||||
public String toString() {
|
||||
return proto.toString();
|
||||
return TextFormat.shortDebugString(proto);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue