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
1 changed files with 1 additions and 1 deletions

View File

@ -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);
} }