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 13:06:20 UTC

[19/21] couch commit: updated refs/heads/windsor-merge-119 to 9138d07

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/3bf3cbd2
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/3bf3cbd2
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/3bf3cbd2

Branch: refs/heads/windsor-merge-119
Commit: 3bf3cbd2f78f6c030e796d7034a69b08df224bac
Parents: 1f5673f
Author: Robert Newson <rn...@apache.org>
Authored: Tue Aug 5 11:49:04 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Aug 5 12:03:15 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/3bf3cbd2/src/couch_proc_manager.erl
----------------------------------------------------------------------
diff --git a/src/couch_proc_manager.erl b/src/couch_proc_manager.erl
index 8288b13..d06e7b9 100644
--- a/src/couch_proc_manager.erl
+++ b/src/couch_proc_manager.erl
@@ -217,7 +217,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};