You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2020/02/03 15:48:34 UTC

[couchdb] branch fix-with-admin-party-please updated: Fix dev/run --with-admin-party-please

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

rnewson pushed a commit to branch fix-with-admin-party-please
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/fix-with-admin-party-please by this push:
     new 5569876  Fix dev/run --with-admin-party-please
5569876 is described below

commit 556987653e85d15f7d76301c2807b5f0103fbdb1
Author: Robert Newson <ro...@uk.ibm.com>
AuthorDate: Mon Feb 3 15:48:20 2020 +0000

    Fix dev/run --with-admin-party-please
---
 dev/run | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/run b/dev/run
index 3186a1f..a96817d 100755
--- a/dev/run
+++ b/dev/run
@@ -422,6 +422,7 @@ def hack_local_ini(ctx, contents):
     contents = contents.replace(previous_line, previous_line + secret_line)
 
     if ctx["with_admin_party"]:
+        os.environ["COUCHDB_TEST_ADMIN_PARTY_OVERRIDE"] = "1"
         ctx["admin"] = ("Admin Party!", "You do not need any password.")
         return contents