You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/05 00:18:18 UTC

[16/20] couch commit: updated refs/heads/windsor-merge-102 to 944c542

Fix typo in pattern match


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

Branch: refs/heads/windsor-merge-102
Commit: 286df6eac01c8d26be33bb0fb0e4a78959de3963
Parents: 1e8e996
Author: Robert Newson <rn...@apache.org>
Authored: Mon Aug 4 18:12:32 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Mon Aug 4 18:27:10 2014 +0100

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/286df6ea/src/couch_proc_manager.erl
----------------------------------------------------------------------
diff --git a/src/couch_proc_manager.erl b/src/couch_proc_manager.erl
index 24c3b47..8dd7da4 100644
--- a/src/couch_proc_manager.erl
+++ b/src/couch_proc_manager.erl
@@ -188,7 +188,7 @@ handle_info({gen_event_EXIT, {config_listener, ?MODULE}, _Reason}, State) ->
     erlang:send_after(5000, self(), restart_config_listener),
     {noreply, State};
 
-handle_info(restart_config_lister, State) ->
+handle_info(restart_config_listener, State) ->
     ok = config:listen_for_changes(?MODULE, nil),
     {noreply, State};