This is an automated email from the ASF dual-hosted git repository. jiahuili430 pushed a commit to branch add-retry-until-for-search_test.exs in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit dc29cc892cd9d7c164ccb61dcb04107cee97ef35 Author: Jiahui Li <[email protected]> AuthorDate: Sat Apr 11 22:17:33 2026 -0500 t increase request_timeout --- test/elixir/lib/couch.ex | 4 ++-- test/elixir/lib/couch_raw.ex | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/elixir/lib/couch.ex b/test/elixir/lib/couch.ex index a119095a9..035a326ad 100644 --- a/test/elixir/lib/couch.ex +++ b/test/elixir/lib/couch.ex @@ -77,8 +77,8 @@ defmodule Couch do # specifically fires during an active HTTP response and defaults to 10_000 # if not specified. We're defining it to a different value than the # request_timeout largely just so we know which timeout fired. - @request_timeout 60_000 - @inactivity_timeout 55_000 + @request_timeout 120_000 + @inactivity_timeout 110_000 def process_url("http://" <> _ = url) do url diff --git a/test/elixir/lib/couch_raw.ex b/test/elixir/lib/couch_raw.ex index 641612c9c..46c7d8ec6 100644 --- a/test/elixir/lib/couch_raw.ex +++ b/test/elixir/lib/couch_raw.ex @@ -4,8 +4,8 @@ defmodule Rawresp do @moduledoc """ HTTP client that provides raw response as result """ - @request_timeout 60_000 - @inactivity_timeout 55_000 + @request_timeout 120_000 + @inactivity_timeout 110_000 def process_url("http://" <> _ = url) do url
