Repository: couchdb
Updated Branches:
  refs/heads/1.x.x 7779c11bb -> 49fa67e54


Fix couch_config call caused by badly patch backport in 0c02b2c9a

Thanks @adamlofts for the report.


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

Branch: refs/heads/1.x.x
Commit: 49fa67e5482ff2b5d7b525ac8b53ef7b3869534f
Parents: 7779c11
Author: Alexander Shorin <[email protected]>
Authored: Mon Nov 9 14:18:57 2015 +0300
Committer: Alexander Shorin <[email protected]>
Committed: Mon Nov 9 14:18:57 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/couchdb/blob/49fa67e5/src/couchdb/couch_httpd.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl
index b73b0bd..42ee783 100644
--- a/src/couchdb/couch_httpd.erl
+++ b/src/couchdb/couch_httpd.erl
@@ -89,7 +89,7 @@ start_link(Name, Options) ->
     % just stop if one of the config settings change. couch_server_sup
     % will restart us and then we will pick up the new settings.
 
-    BindAddress = case config:get("httpd", "bind_address", "any") of
+    BindAddress = case couch_config:get("httpd", "bind_address", "any") of
                       "any" -> any;
                       Else -> Else
                   end,

Reply via email to