This is an automated email from the ASF dual-hosted git repository.
jiahuili430 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new c53c2cf33 Replace `dbg:stop_clear/0` with `dbg:stop/0`
c53c2cf33 is described below
commit c53c2cf33d878f7d058c488f3cca4874a9ae064f
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 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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.