From e85a5a6ae2ae01159ef4aeffd9f51f58c7bc844b Mon Sep 17 00:00:00 2001 From: Federico Cabiddu Date: Sun, 21 Mar 2021 17:50:01 +0100 Subject: [PATCH] http_async_client: disable HTTP/2 multiplexing --- src/modules/http_async_client/http_multi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/http_async_client/http_multi.c b/src/modules/http_async_client/http_multi.c index 4f5cb30da82..c4351b1b94a 100644 --- a/src/modules/http_async_client/http_multi.c +++ b/src/modules/http_async_client/http_multi.c @@ -402,6 +402,7 @@ int init_http_multi(struct event_base *evbase, struct http_m_global *wg) curl_multi_setopt(g->multi, CURLMOPT_SOCKETDATA, g); curl_multi_setopt(g->multi, CURLMOPT_TIMERFUNCTION, multi_timer_cb); curl_multi_setopt(g->multi, CURLMOPT_TIMERDATA, g); + curl_multi_setopt(g->multi, CURLMOPT_PIPELINING, CURLPIPE_NOTHING); return init_http_m_table(hash_size); }