You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2017/07/16 15:47:00 UTC

[1/3] couchdb-setup git commit: fix typo/compilation error

Repository: couchdb-setup
Updated Branches:
  refs/heads/593-setup-single-node e153d485b -> 4b90eca7e


fix typo/compilation error


Project: http://git-wip-us.apache.org/repos/asf/couchdb-setup/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-setup/commit/d61381a0
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-setup/tree/d61381a0
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-setup/diff/d61381a0

Branch: refs/heads/593-setup-single-node
Commit: d61381a094a7f67ea688c58edacb3b204babcaa9
Parents: e153d48
Author: Jan Lehnardt <ja...@apache.org>
Authored: Sun Jul 16 17:24:55 2017 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sun Jul 16 17:24:55 2017 +0200

----------------------------------------------------------------------
 src/setup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-setup/blob/d61381a0/src/setup.erl
----------------------------------------------------------------------
diff --git a/src/setup.erl b/src/setup.erl
index 0d17109..d0ecd2c 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]).
 
 


[3/3] couchdb-setup git commit: chore: better log output

Posted by ja...@apache.org.
chore: better log output


Project: http://git-wip-us.apache.org/repos/asf/couchdb-setup/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-setup/commit/4b90eca7
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-setup/tree/4b90eca7
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-setup/diff/4b90eca7

Branch: refs/heads/593-setup-single-node
Commit: 4b90eca7ede04abaa72a36e38740cdd9c9b22ebe
Parents: 942c665
Author: Jan Lehnardt <ja...@apache.org>
Authored: Sun Jul 16 17:45:13 2017 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sun Jul 16 17:45:13 2017 +0200

----------------------------------------------------------------------
 src/setup_httpd.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-setup/blob/4b90eca7/src/setup_httpd.erl
----------------------------------------------------------------------
diff --git a/src/setup_httpd.erl b/src/setup_httpd.erl
index 1f5b7aa..f4e05ce 100644
--- a/src/setup_httpd.erl
+++ b/src/setup_httpd.erl
@@ -94,7 +94,7 @@ handle_action("finish_cluster", Setup) ->
         {error, cluster_finished} ->
             {error, <<"Cluster is already finished">>};
         Else ->
-            couch_log:notice("Else: ~p~n", [Else]),
+            couch_log:notice("finish_cluster: ~p~n", [Else]),
             ok
     end;
 


[2/3] couchdb-setup git commit: chore: whitespace

Posted by ja...@apache.org.
chore: whitespace


Project: http://git-wip-us.apache.org/repos/asf/couchdb-setup/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-setup/commit/942c665c
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-setup/tree/942c665c
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-setup/diff/942c665c

Branch: refs/heads/593-setup-single-node
Commit: 942c665c6e44c4f954a77d72a59aac856f20a6f3
Parents: d61381a
Author: Jan Lehnardt <ja...@apache.org>
Authored: Sun Jul 16 17:44:51 2017 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sun Jul 16 17:44:51 2017 +0200

----------------------------------------------------------------------
 src/setup_httpd.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-setup/blob/942c665c/src/setup_httpd.erl
----------------------------------------------------------------------
diff --git a/src/setup_httpd.erl b/src/setup_httpd.erl
index a9cbfe8..1f5b7aa 100644
--- a/src/setup_httpd.erl
+++ b/src/setup_httpd.erl
@@ -39,7 +39,7 @@ handle_setup_req(#httpd{method='GET'}=Req) ->
                 true ->
                     chttpd:send_json(Req, 200, {[{state, single_node_enabled}]})
             end;
-        _ -> 
+        _ ->
             case setup:is_cluster_enabled() of
                 false ->
                     chttpd:send_json(Req, 200, {[{state, cluster_disabled}]});