You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2015/06/02 21:31:14 UTC

[24/41] chttpd commit: updated refs/heads/2080-port-cors to e2c2bd7

Fix typo in config listener module name


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

Branch: refs/heads/2080-port-cors
Commit: abd7f9ac1bf15bb03640a4b5d6896d17137be3e4
Parents: 81c938a
Author: Alexander Shorin <kx...@apache.org>
Authored: Thu Feb 5 14:17:52 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Thu Feb 5 14:17:52 2015 +0300

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


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/abd7f9ac/src/chttpd_sup.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_sup.erl b/src/chttpd_sup.erl
index 6763ffe..0213c5f 100644
--- a/src/chttpd_sup.erl
+++ b/src/chttpd_sup.erl
@@ -23,7 +23,7 @@ start_link(Args) ->
     supervisor:start_link({local,?MODULE}, ?MODULE, Args).
 
 init([]) ->
-    chttp_config_listener:subscribe(),
+    chttpd_config_listener:subscribe(),
     {ok, {{one_for_one, 3, 10}, [
         ?CHILD(chttpd, worker),
         ?CHILD(chttpd_auth_cache, worker),