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
The following commit(s) were added to refs/heads/master by this push:
new fdaf70671 Fix typo
fdaf70671 is described below
commit fdaf70671ea87d2ba15dbaecf98a0a447a194834
Author: Ádám Bakai <[email protected]>
AuthorDate: Tue Nov 14 12:46:21 2023 +0100
Fix typo
Change-Id: I3394df360c263978bc8156deffe2b0475093ad09
Reviewed-on: http://gerrit.cloudera.org:8080/20704
Reviewed-by: Zoltan Martonka <[email protected]>
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <[email protected]>
---
src/kudu/security/tls_handshake.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kudu/security/tls_handshake.cc
b/src/kudu/security/tls_handshake.cc
index b28df06ad..e240e75ff 100644
--- a/src/kudu/security/tls_handshake.cc
+++ b/src/kudu/security/tls_handshake.cc
@@ -164,7 +164,7 @@ Status TlsHandshake::Continue(const string& recv, string*
send) {
if (rc == 1) {
// SSL_do_handshake() must have read all the pending data.
DCHECK_EQ(0, BIO_ctrl_pending(rbio));
- VLOG(2) << Substitute("TSL Handshake complete");
+ VLOG(2) << Substitute("TLS Handshake complete");
return Status::OK();
}
return Status::Incomplete("TLS Handshake incomplete");