You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2019/08/23 19:34:02 UTC

[hbase] branch branch-2 updated: HBASE-21400 correct spelling error of 'initilize' in comment

This is an automated email from the ASF dual-hosted git repository.

janh pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new b5818a7  HBASE-21400 correct spelling error of 'initilize' in comment
b5818a7 is described below

commit b5818a7f3f4d51da41da7a6d3c86d1873a2c9a72
Author: wuguihu <wu...@mininglamp.com>
AuthorDate: Sat Oct 27 14:47:09 2018 +0800

    HBASE-21400 correct spelling error of 'initilize' in comment
    
    Signed-off-by: Jan Hentschel <ja...@ultratendency.com>
---
 .../main/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 b1c3ea2..b152a1d 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 @@ class BlockingRpcConnection extends RpcConnection implements Runnable {
 
   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()));