This is an automated email from the ASF dual-hosted git repository.
eiri pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/master by this push:
new 2fc328e Prevent custom test config from persisting
2fc328e is described below
commit 2fc328e03dfbd1a381202b1ae9b25b4bda9fce2f
Author: Eric Avdey <[email protected]>
AuthorDate: Tue Aug 22 11:27:03 2017 -0300
Prevent custom test config from persisting
---
src/chttpd/test/chttpd_security_tests.erl | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/chttpd/test/chttpd_security_tests.erl
b/src/chttpd/test/chttpd_security_tests.erl
index b3a14df..b80238c 100644
--- a/src/chttpd/test/chttpd_security_tests.erl
+++ b/src/chttpd/test/chttpd_security_tests.erl
@@ -34,10 +34,11 @@
setup() ->
Hashed = couch_passwords:hash_admin_password(?PASS),
- ok = config:set("admins", ?USER, ?b2l(Hashed), _Persist=false),
+ Persist = false,
+ ok = config:set("admins", ?USER, ?b2l(Hashed), Persist),
UserDb = ?tempdb(),
TmpDb = ?tempdb(),
- ok = config:set("chttpd_auth", "authentication_db", ?b2l(UserDb)),
+ ok = config:set("chttpd_auth", "authentication_db", ?b2l(UserDb), Persist),
Addr = config:get("chttpd", "bind_address", "127.0.0.1"),
Port = mochiweb_socket_server:get(chttpd, port),
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].