HDFS-14433. Remove the extra empty space in the DataStreamer logging. Contributed by Yishuang Lu. (#747)
This commit is contained in:
parent
13907d8479
commit
685cb83e4c
|
@ -1152,7 +1152,7 @@ class DataStreamer extends Daemon {
|
||||||
one = ackQueue.getFirst();
|
one = ackQueue.getFirst();
|
||||||
}
|
}
|
||||||
if (one.getSeqno() != seqno) {
|
if (one.getSeqno() != seqno) {
|
||||||
throw new IOException("ResponseProcessor: Expecting seqno " +
|
throw new IOException("ResponseProcessor: Expecting seqno" +
|
||||||
" for block " + block +
|
" for block " + block +
|
||||||
one.getSeqno() + " but received " + seqno);
|
one.getSeqno() + " but received " + seqno);
|
||||||
}
|
}
|
||||||
|
@ -1386,7 +1386,7 @@ class DataStreamer extends Daemon {
|
||||||
if (dfsClient.dtpReplaceDatanodeOnFailureReplication > 0 && nodes.length
|
if (dfsClient.dtpReplaceDatanodeOnFailureReplication > 0 && nodes.length
|
||||||
>= dfsClient.dtpReplaceDatanodeOnFailureReplication) {
|
>= dfsClient.dtpReplaceDatanodeOnFailureReplication) {
|
||||||
DFSClient.LOG.warn(
|
DFSClient.LOG.warn(
|
||||||
"Failed to find a new datanode to add to the write pipeline, "
|
"Failed to find a new datanode to add to the write pipeline,"
|
||||||
+ " continue to write to the pipeline with " + nodes.length
|
+ " continue to write to the pipeline with " + nodes.length
|
||||||
+ " nodes since it's no less than minimum replication: "
|
+ " nodes since it's no less than minimum replication: "
|
||||||
+ dfsClient.dtpReplaceDatanodeOnFailureReplication
|
+ dfsClient.dtpReplaceDatanodeOnFailureReplication
|
||||||
|
|
Loading…
Reference in New Issue