summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Berndt <ronny@apache.org>2022-08-23 23:23:48 +0200
committerRonny <ronny@apache.org>2022-08-23 23:57:28 +0200
commit133d6bb4007544d687f671c6ddfd96ae0d6153f0 (patch)
tree5db58ba19055c14116b4b675accfd898f05b915f
parent6f5a021f78006080874ce8ed678a141f20f8cdfe (diff)
downloadcouchdb-133d6bb4007544d687f671c6ddfd96ae0d6153f0.tar.gz
fix missing "=" for admin party in #4153
-rwxr-xr-xdev/run2
1 files changed, 1 insertions, 1 deletions
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: