You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2022/08/23 21:24:00 UTC

[couchdb] branch fix-4153 created (now fb8d0acba)

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

ronny pushed a change to branch fix-4153
in repository https://gitbox.apache.org/repos/asf/couchdb.git


      at fb8d0acba fix missing "=" for admin party in #4153

This branch includes the following new commits:

     new fb8d0acba fix missing "=" for admin party in #4153

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: fix missing "=" for admin party in #4153

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

ronny pushed a commit to branch fix-4153
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit fb8d0acbad6294275abbc09bd397ba3291f29779
Author: Ronny Berndt <ro...@apache.org>
AuthorDate: Tue Aug 23 23:23:48 2022 +0200

    fix missing "=" for admin party in #4153
---
 dev/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/run b/dev/run
index 32c68d1a2..52db65255 100755
--- a/dev/run
+++ b/dev/run
@@ -475,7 +475,7 @@ def hack_local_ini(ctx, contents):
     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 + "\n\n[chttpd_auth]\nsecret %s\n" % COMMON_SALT
+        return contents + "\n\n[chttpd_auth]\nsecret = %s\n" % COMMON_SALT
 
     # handle admin credentials passed from cli or generate own one
     if ctx["admin"] is None: