HDFS-15256. Fix typo in DataXceiverServer#run(). Contributed by Lisheng Sun.
This commit is contained in:
parent
ab7495dc7d
commit
0b855b9f35
|
@ -229,7 +229,7 @@ class DataXceiverServer implements Runnable {
|
||||||
int curXceiverCount = datanode.getXceiverCount();
|
int curXceiverCount = datanode.getXceiverCount();
|
||||||
if (curXceiverCount > maxXceiverCount) {
|
if (curXceiverCount > maxXceiverCount) {
|
||||||
throw new IOException("Xceiver count " + curXceiverCount
|
throw new IOException("Xceiver count " + curXceiverCount
|
||||||
+ " exceeds the limit of concurrent xcievers: "
|
+ " exceeds the limit of concurrent xceivers: "
|
||||||
+ maxXceiverCount);
|
+ maxXceiverCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue