MXS-2483: Take SSLProvider into use
Servers and listeners now have a SSLProvider member variable that is used for all SSL related tasks.
This commit is contained in:
@ -524,9 +524,9 @@ void Server::print_to_dcb(DCB* dcb) const
|
||||
+ server->stats.n_from_pool + 1);
|
||||
dcb_printf(dcb, "\tPool availability: %0.2lf%%\n", d * 100.0);
|
||||
}
|
||||
if (server->ssl_context())
|
||||
if (server->ssl().context())
|
||||
{
|
||||
dcb_printf(dcb, "%s", server->ssl_context()->to_string().c_str());
|
||||
dcb_printf(dcb, "%s", server->ssl().context()->to_string().c_str());
|
||||
}
|
||||
if (server->proxy_protocol)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user