You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2022/10/02 14:06:14 UTC

[couchdb] branch increase-log-config-change-timeout created (now 7bb2dc195)

This is an automated email from the ASF dual-hosted git repository.

jaydoane pushed a change to branch increase-log-config-change-timeout
in repository https://gitbox.apache.org/repos/asf/couchdb.git


      at 7bb2dc195 Try quadrupling config change timeout

This branch includes the following new commits:

     new 7bb2dc195 Try quadrupling config change timeout

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/01: Try quadrupling config change timeout

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jaydoane pushed a commit to branch increase-log-config-change-timeout
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 7bb2dc19510bb993d69c1e13ac827f3043d3b05c
Author: Jay Doane <ja...@apache.org>
AuthorDate: Sun Oct 2 07:05:50 2022 -0700

    Try quadrupling config change timeout
---
 src/couch_log/test/eunit/couch_log_test_util.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch_log/test/eunit/couch_log_test_util.erl b/src/couch_log/test/eunit/couch_log_test_util.erl
index 9a170bdbd..6b9e13099 100644
--- a/src/couch_log/test/eunit/couch_log_test_util.erl
+++ b/src/couch_log/test/eunit/couch_log_test_util.erl
@@ -63,7 +63,7 @@ with_config_listener(Fun) ->
 wait_for_config() ->
     receive
         couch_log_config_change_finished -> ok
-    after 1000 ->
+    after 4000 ->
         erlang:error(config_change_timeout)
     end.