This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 8cf287778 [ssl] Remove TLS 1.0 and 1.1 tests.
8cf287778 is described below
commit 8cf287778371c13ee7e88fa428424b3c0fbc7ff0
Author: Jason Zhou <[email protected]>
AuthorDate: Tue Jul 2 23:53:11 2024 -0400
[ssl] Remove TLS 1.0 and 1.1 tests.
Currently the SSLProtocolTest with TLS v1.0 and v1.1 do not pass because
those versions were disabled in ubuntu 20.04, see:
https://discourse.ubuntu.com/t/spec-tls-1-0-and-1-1-are-disabled-by-default/41868
https://github.com/SoftEtherVPN/SoftEtherVPN/issues/1358#issuecomment-851427905
Review: https://reviews.apache.org/r/75075/
---
3rdparty/libprocess/src/tests/ssl_tests.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/3rdparty/libprocess/src/tests/ssl_tests.cpp
b/3rdparty/libprocess/src/tests/ssl_tests.cpp
index c90d1da62..10e609d8a 100644
--- a/3rdparty/libprocess/src/tests/ssl_tests.cpp
+++ b/3rdparty/libprocess/src/tests/ssl_tests.cpp
@@ -123,8 +123,8 @@ static const vector<string> protocols = {
#ifndef OPENSSL_NO_SSL3
"LIBPROCESS_SSL_ENABLE_SSL_V3",
#endif
- "LIBPROCESS_SSL_ENABLE_TLS_V1_0",
- "LIBPROCESS_SSL_ENABLE_TLS_V1_1",
+ // Removed TLS 1.0 and 1.1 as they're not supported by ubuntu 20.04
+ //
https://discourse.ubuntu.com/t/spec-tls-1-0-and-1-1-are-disabled-by-default/41868
"LIBPROCESS_SSL_ENABLE_TLS_V1_2",
// On some platforms, we need to build against OpenSSL versions that
// do not support TLS 1.3 yet.