summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2021-10-30 10:59:08 +0200
committerJan Lehnardt <jan@apache.org>2021-10-30 17:49:21 +0200
commitd0cd82c2ab53b1075b22f813364abe6c1dc46255 (patch)
treeb1511eab424a2f1dc70a86b48a42e2ae6dce3eec
parent01aed33684670f43d724b3db9dd3aade632a7d57 (diff)
downloadcouchdb-d0cd82c2ab53b1075b22f813364abe6c1dc46255.tar.gz
fix(auth): straggling s/couch_httpd_auth/chttpd/
-rw-r--r--src/couch/src/couch_httpd_auth.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couch/src/couch_httpd_auth.erl b/src/couch/src/couch_httpd_auth.erl
index dfc9394e5..01a210d05 100644
--- a/src/couch/src/couch_httpd_auth.erl
+++ b/src/couch/src/couch_httpd_auth.erl
@@ -315,7 +315,7 @@ ensure_cookie_auth_secret() ->
case chttpd_util:get_chttpd_auth_config("secret") of
undefined ->
NewSecret = ?b2l(couch_uuids:random()),
- config:set("couch_httpd_auth", "secret", NewSecret),
+ config:set("chttpd_auth", "secret", NewSecret),
NewSecret;
Secret -> Secret
end.