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-209 Commit: 3bf3cbd2f78f6c030e796d7034a69b08df224bac Parents: 1f5673f Author: Robert Newson <[email protected]> Authored: Tue Aug 5 11:49:04 2014 +0100 Committer: Robert Newson <[email protected]> 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};
