In ssl_manager_openssl.cpp, the OpenSSL API SSL_CTX_set_cipher_list() only works for TLSv1.2 and below.
If user configures TLSv1.3 only, SSL_CTX_set_cipher_list() returns 0 and causes an error: "Can not set supported cipher suites: "
The related API for TLSv1.3 is SSL_CTX_set_ciphersuites().
Reference: https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_cipher_list.html