Skip to content

Commit

Permalink
Merge branch 'main' into async-store
Browse files Browse the repository at this point in the history
  • Loading branch information
esigo authored Mar 11, 2022
2 parents 26803b0 + 4a7200b commit a45f968
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class HttpOperation

// Perform initial connect, handling the timeout if needed
curl_easy_setopt(curl_, CURLOPT_CONNECT_ONLY, 1L);
curl_easy_setopt(curl_, CURLOPT_TIMEOUT, http_conn_timeout_.count() / 1000);
curl_easy_setopt(curl_, CURLOPT_TIMEOUT_MS, http_conn_timeout_.count());
DispatchEvent(opentelemetry::ext::http::client::SessionState::Connecting);
res_ = curl_easy_perform(curl_);
if (CURLE_OK != res_)
Expand Down

0 comments on commit a45f968

Please sign in to comment.