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 2022/09/01 16:05:53 UTC

[couchdb] 24/31: fix missing "=" for admin party in #4153

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

rnewson pushed a commit to branch raft_storemodule
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 37e177fd7598564ed522a4ed5e141e7541b35a27
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: