Skip to content

Commit

Permalink
Fix GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
  • Loading branch information
jviotti committed Nov 18, 2023
1 parent 0e09e03 commit f12f747
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- name: Install dependencies (GNU/Linux)
if: runner.os == 'linux'
run: sudo apt-get install --yes clang-format
run: sudo apt-get install --yes clang-format libcurl4-openssl-dev

# See https://github.com/actions/runner-images/issues/8659
- name: Workaround Clang issue (GNU/Linux)
Expand Down
5 changes: 0 additions & 5 deletions src/http/stream_curl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,6 @@ auto Stream::send() -> std::future<Status> {
handle_curl(curl_easy_setopt(this->internal->handle, CURLOPT_HTTPHEADER,
this->internal->headers));

// This tells libcurl the maximum time any cached certificate store it has in
// memory may be kept and reused for new connections.
handle_curl(curl_easy_setopt(this->internal->handle, CURLOPT_CA_CACHE_TIMEOUT,
604800L));

handle_curl(curl_easy_setopt(this->internal->handle, CURLOPT_WRITEFUNCTION,
callback_on_body));
handle_curl(
Expand Down

0 comments on commit f12f747

Please sign in to comment.