HDFS-10173. Typo in DataXceiverServer. Contributed by Michael Han.

This commit is contained in:
Andrew Wang 2016-03-16 18:49:57 -07:00
parent ae14e5d07f
commit 02a250db9f

View File

@ -75,7 +75,7 @@ static class BlockBalanceThrottler extends DataTransferThrottler {
private BlockBalanceThrottler(long bandwidth, int maxThreads) { private BlockBalanceThrottler(long bandwidth, int maxThreads) {
super(bandwidth); super(bandwidth);
this.maxThreads.set(maxThreads); this.maxThreads.set(maxThreads);
LOG.info("Balancing bandwith is " + bandwidth + " bytes/s"); LOG.info("Balancing bandwidth is " + bandwidth + " bytes/s");
LOG.info("Number threads for balancing is " + maxThreads); LOG.info("Number threads for balancing is " + maxThreads);
} }