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

View File

@ -307,7 +307,7 @@ public class ValueQueue <E> {
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;
}