HADOOP-13232. Typo in exception in ValueQueue.java. Contributed by Jiayi Zhou.

This commit is contained in:
Akira Ajisaka 2016-06-02 19:14:53 +09:00
parent 69555fca06
commit 99675e00df

View File

@ -307,7 +307,7 @@ public List<E> getAtMost(String keyName, int num) throws IOException,
ekvs.add(val);
}
} catch (Exception e) {
throw new IOException("Exeption while contacting value generator ", e);
throw new IOException("Exception while contacting value generator ", e);
}
return ekvs;
}