diff options
author | Jan Lehnardt <jan@apache.org> | 2017-07-16 17:24:55 +0200 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2017-07-16 17:24:55 +0200 |
commit | d61381a094a7f67ea688c58edacb3b204babcaa9 (patch) | |
tree | 243a6606da7f86f72c2900aa5827fc4f84577587 | |
parent | e153d485b6b195054c87bbfcca1c2a5f54d979eb (diff) | |
download | couchdb-d61381a094a7f67ea688c58edacb3b204babcaa9.tar.gz |
fix typo/compilation error
-rw-r--r-- | src/setup.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup.erl b/src/setup.erl index 0d1710947..d0ecd2cd9 100644 --- a/src/setup.erl +++ b/src/setup.erl @@ -208,7 +208,7 @@ enable_single_node(Options) -> setup_node(NewCredentials, NewBindAddress, 1, Port), Dbs = proplists:get_value(ensure_dbs_exist, Options, cluster_system_dbs()), - finish_cluster_int(Dbs, has_cluster_system_dbs(Dbs)) + finish_cluster_int(Dbs, has_cluster_system_dbs(Dbs)), couch_log:notice("Enable Single Node: ~p~n", [Options]). |