HDFS-15256. Fix typo in DataXceiverServer#run(). Contributed by Lisheng Sun.

This commit is contained in:
Inigo Goiri 2020-04-06 13:05:33 -07:00
parent ab7495dc7d
commit 0b855b9f35

View File

@ -229,7 +229,7 @@ public void run() {
int curXceiverCount = datanode.getXceiverCount();
if (curXceiverCount > maxXceiverCount) {
throw new IOException("Xceiver count " + curXceiverCount
+ " exceeds the limit of concurrent xcievers: "
+ " exceeds the limit of concurrent xceivers: "
+ maxXceiverCount);
}