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

(cherry picked from commit 99675e00df)
This commit is contained in:
Akira Ajisaka 2016-06-02 19:14:53 +09:00
parent 3dd557e4b6
commit 6843e55208
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;
}