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

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit 3f0008bf67df5630835711f848805d488d9ccc99
Author: Andrew Wong <[email protected]>
AuthorDate: Sat Oct 10 21:12:41 2020 -0700

    mini_ranger: fix typo in error message
    
    Change-Id: I78af12220745d8d6b3894b34e1f4bac55f24d7a3
    Reviewed-on: http://gerrit.cloudera.org:8080/16579
    Reviewed-by: Hao Hao <[email protected]>
    Tested-by: Andrew Wong <[email protected]>
---
 src/kudu/ranger/mini_ranger.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kudu/ranger/mini_ranger.cc b/src/kudu/ranger/mini_ranger.cc
index b060ff0..e6f6f11 100644
--- a/src/kudu/ranger/mini_ranger.cc
+++ b/src/kudu/ranger/mini_ranger.cc
@@ -331,7 +331,7 @@ Status MiniRanger::PostToRanger(string url, EasyJson 
payload) {
   RETURN_NOT_OK_PREPEND(curl_.PostToURL(JoinPathSegments(ranger_admin_url_, 
std::move(url)),
                                         std::move(payload.ToString()), &result,
                                         {"Content-Type: application/json"}),
-                        Substitute("Error recceived from Ranger: $0", 
result.ToString()));
+                        Substitute("Error received from Ranger: $0", 
result.ToString()));
   return Status::OK();
 }
 

Reply via email to