refactor(Deps/OpenSSL): Deprecate OpenSSL 1.x (#19452)

* EOL
This commit is contained in:
Kitzunu
2024-08-07 18:13:31 +02:00
committed by GitHub
parent 41366fcc69
commit fdd8ff6e04
7 changed files with 3 additions and 149 deletions

View File

@@ -391,9 +391,6 @@ int main(int argc, char** argv)
if (MySQL::GetLibraryVersion() < 80000)
LOG_WARN("server", "WARNING: You are using MySQL version 5.7 which is soon EOL!\nThis version will be deprecated. Consider upgrading to MySQL 8.0 or 8.1!");
#endif
#if OPENSSL_VERSION_NUMBER < 0x30000000L
LOG_WARN("server", "WARNING: You are using OpenSSL version 1.1 which is soon EOL!\nThis version will be deprecated. Consider upgrading to OpenSSL 3.0 or 3.1!");
#endif
// Launch CliRunnable thread
std::shared_ptr<std::thread> cliThread;