From 2d4580106a8e7abb1129eb143b92a18175d57723 Mon Sep 17 00:00:00 2001 From: wuguihu Date: Sat, 27 Oct 2018 14:47:09 +0800 Subject: [PATCH] HBASE-21400 correct spelling error of 'initilize' in comment Signed-off-by: Jan Hentschel --- .../java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java index b1c3ea21ba5b..b152a1dbe33f 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java @@ -579,7 +579,7 @@ private void processResponseForConnectionHeader() throws IOException { private void negotiateCryptoAes(RPCProtos.CryptoCipherMeta cryptoCipherMeta) throws IOException { - // initilize the Crypto AES with CryptoCipherMeta + // initialize the Crypto AES with CryptoCipherMeta saslRpcClient.initCryptoCipher(cryptoCipherMeta, this.rpcClient.conf); // reset the inputStream/outputStream for Crypto AES encryption this.in = new DataInputStream(new BufferedInputStream(saslRpcClient.getInputStream()));