You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wi...@apache.org on 2020/01/20 11:11:05 UTC

[couchdb] branch couch_started_message updated (9420372 -> 80fb7e7)

This is an automated email from the ASF dual-hosted git repository.

willholley pushed a change to branch couch_started_message
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 9420372  Log clustered URIs at startup
     new 80fb7e7  Log clustered URIs at startup

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9420372)
            \
             N -- N -- N   refs/heads/couch_started_message (80fb7e7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/couch/src/couch_sup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[couchdb] 01/01: Log clustered URIs at startup

Posted by wi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

willholley pushed a commit to branch couch_started_message
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 80fb7e77a833a5cba7c2a201651bcc19557cd3de
Author: Will Holley <wi...@gmail.com>
AuthorDate: Mon Jan 20 11:10:09 2020 +0000

    Log clustered URIs at startup
    
    Changes the URI logged at startup to report the address(es) that
    `chttpd` is bound to rather than `httpd`. Previously it was a bit
    confusing that it always reported that Couch had started on
    port 5986 which is deprecated and not intended to be user-facing.
---
 src/couch/src/couch_sup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch/src/couch_sup.erl b/src/couch/src/couch_sup.erl
index c4a2e63..6e7ef98 100644
--- a/src/couch/src/couch_sup.erl
+++ b/src/couch/src/couch_sup.erl
@@ -157,7 +157,7 @@ write_uris() ->
 
 
 get_uris() ->
-    Ip = config:get("httpd", "bind_address"),
+    Ip = config:get("chttpd", "bind_address"),
     lists:flatmap(fun(Uri) ->
         case get_uri(Uri, Ip) of
             undefined -> [];