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

abhi pushed a commit to branch ranger-2.7
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/ranger-2.7 by this push:
     new 82264db48 RANGER-5191: Fix typo in the log message in RangerRESTClient 
(#557)
82264db48 is described below

commit 82264db480c536de75ee63c6fa684fd9728c5ddc
Author: Naoki Takezoe <[email protected]>
AuthorDate: Sun Jun 1 02:30:18 2025 +0900

    RANGER-5191: Fix typo in the log message in RangerRESTClient (#557)
    
    (cherry picked from commit 35dd720d865e2e02092edbdcaf9ba24343e1b87b)
---
 .../src/main/java/org/apache/ranger/plugin/util/RangerRESTClient.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerRESTClient.java
 
b/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerRESTClient.java
index cb131d97d..711a9fcf5 100644
--- 
a/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerRESTClient.java
+++ 
b/agents-common/src/main/java/org/apache/ranger/plugin/util/RangerRESTClient.java
@@ -467,8 +467,8 @@ protected SSLContext getSSLContext(KeyManager[] kmList, 
TrustManager[] tmList) {
                        LOG.error("SSL algorithm is not available in the 
environment", e);
                        throw new IllegalStateException("SSL algorithm is not 
available in the environment: " + e.getMessage(), e);
                } catch (KeyManagementException e) {
-                       LOG.error("Unable to initials the SSLContext", e);
-                       throw new IllegalStateException("Unable to initials the 
SSLContex: " + e.getMessage(), e);
+                       LOG.error("Unable to initialize the SSLContext", e);
+                       throw new IllegalStateException("Unable to initialize 
the SSLContext: " + e.getMessage(), e);
                }
        }
 

Reply via email to