You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ii...@apache.org on 2022/01/31 20:39:55 UTC

[couchdb] branch fix-flaky-test-in-fabric_rpc updated (1baa909 -> de1dbf4)

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

iilyak pushed a change to branch fix-flaky-test-in-fabric_rpc
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 1baa909  Do not persist config to disk
     new de1dbf4  Do not persist config to disk

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1baa909)
            \
             N -- N -- N   refs/heads/fix-flaky-test-in-fabric_rpc (de1dbf4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:

[couchdb] 01/01: Do not persist config to disk

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

iilyak pushed a commit to branch fix-flaky-test-in-fabric_rpc
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit de1dbf46258acc827cb8b93e248faf63b17393a8
Author: ILYA Khlopotov <ii...@apache.org>
AuthorDate: Mon Jan 31 12:36:25 2022 -0800

    Do not persist config to disk
---
 src/fabric/test/eunit/fabric_rpc_tests.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fabric/test/eunit/fabric_rpc_tests.erl b/src/fabric/test/eunit/fabric_rpc_tests.erl
index 030d28c..8535ffd 100644
--- a/src/fabric/test/eunit/fabric_rpc_tests.erl
+++ b/src/fabric/test/eunit/fabric_rpc_tests.erl
@@ -58,7 +58,7 @@ setup_all() ->
     DatabaseDir = config:get("couchdb", "database_dir"),
     Suffix = ?b2l(couch_uuids:random()),
     test_util:with_couch_server_restart(fun() ->
-        config:set("couchdb", "database_dir", DatabaseDir ++ "/" ++ Suffix)
+        config:set("couchdb", "database_dir", DatabaseDir ++ "/" ++ Suffix, _Persist = false)
     end),
     Ctx.