config: move async_proxy out of experimental and enable

tested for hours on my git forge, lgtm
This commit is contained in:
Vaxry
2025-04-15 23:32:56 +01:00
parent 3bfbe3598b
commit 01998444c0
3 changed files with 15 additions and 21 deletions

View File

@@ -360,7 +360,7 @@ void CServerHandler::serveStop(const Pistache::Http::Request& req, Pistache::Htt
}
void CServerHandler::proxyPass(const Pistache::Http::Request& req, Pistache::Http::ResponseWriter& response) {
if (g_pConfig->m_config.experimental.async_proxy) {
if (g_pConfig->m_config.async_proxy) {
proxyPassAsync(req, response);
return;
}