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 <[email protected]> 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:
