This is an automated email from the ASF dual-hosted git repository. jiahuili430 pushed a commit to branch fix-compilation-warnings in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit daef31943117ed7f6e100e65ca67fbf52f300b26 Author: Jiahui Li <[email protected]> AuthorDate: Mon Oct 13 14:06:46 2025 -0500 Replace `dbg:stop_clear/0` with `dbg:stop/0` `dbg:stop_clear/0` is deprecate and will be removed in OTP 27, so replace it with `dbg:stop/0`. --- src/couch/test/eunit/couch_index_tests.erl | 2 +- test/elixir/test/changes_async_test.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/couch/test/eunit/couch_index_tests.erl b/src/couch/test/eunit/couch_index_tests.erl index 368f7a059..3c078ca15 100644 --- a/src/couch/test/eunit/couch_index_tests.erl +++ b/src/couch/test/eunit/couch_index_tests.erl @@ -245,7 +245,7 @@ tracer_new() -> ok. tracer_delete() -> - dbg:stop_clear(), + dbg:stop(), (catch ets:delete(?MODULE)), ok. diff --git a/test/elixir/test/changes_async_test.exs b/test/elixir/test/changes_async_test.exs index 4850393c7..2156d5af5 100644 --- a/test/elixir/test/changes_async_test.exs +++ b/test/elixir/test/changes_async_test.exs @@ -317,7 +317,7 @@ defmodule ChangesAsyncTest do req_id = Rawresp.post( - "/#{db_name}/_changes?feed=continuous&timeout=500&filter=_doc_ids", + "/#{db_name}/_changes?feed=continuous&timeout=600&filter=_doc_ids", body: doc_ids, headers: ["Content-Type": "application/json"], stream_to: self(),
