Loading editor/src/webedit_server.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ webedit::Server::Server(std::vector<netplus::socket*> serversocket, for (size_t i = 0; i < _config.getAuthSourceCount(); ++i) { const auto &src = _config.getAuthSource(i); auto pool = std::make_unique<authdb::client::ConnectionPool>( src.url, src.clientName, src.clientSecret, 4); src.url, src.clientName, src.clientSecret, 4,src.tlsVerify); // ConnectionPool opens its HTTP client on the first acquire(), so the // source's TLS policy must be applied to the pool beforehand. pool->setTlsVerify(src.tlsVerify); Loading Loading
editor/src/webedit_server.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -54,7 +54,7 @@ webedit::Server::Server(std::vector<netplus::socket*> serversocket, for (size_t i = 0; i < _config.getAuthSourceCount(); ++i) { const auto &src = _config.getAuthSource(i); auto pool = std::make_unique<authdb::client::ConnectionPool>( src.url, src.clientName, src.clientSecret, 4); src.url, src.clientName, src.clientSecret, 4,src.tlsVerify); // ConnectionPool opens its HTTP client on the first acquire(), so the // source's TLS policy must be applied to the pool beforehand. pool->setTlsVerify(src.tlsVerify); Loading