Browse Source

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

Akira Ajisaka 9 năm trước cách đây
mục cha
commit
99675e00df

+ 1 - 1
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/key/kms/ValueQueue.java

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