diff options
author | John Christopher Anderson <jchris@apache.org> | 2009-01-02 21:46:03 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2009-01-02 21:46:03 +0000 |
commit | 29885f56dd073c1dc2f573fdd42a496194005cc6 (patch) | |
tree | 9ae1122f44f6c596cc4592df42217e40bea12260 | |
parent | 2886280c57cb77b6e7f2bac544af5b8c23164816 (diff) |
fix for update notifier with couch os process. thanks davisp
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@730846 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/couchdb/couch_db_update_notifier.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_db_update_notifier.erl b/src/couchdb/couch_db_update_notifier.erl index 68948afb..ef50e704 100644 --- a/src/couchdb/couch_db_update_notifier.erl +++ b/src/couchdb/couch_db_update_notifier.erl @@ -37,7 +37,7 @@ stop(Pid) -> couch_event_sup:stop(Pid). init(Exec) when is_list(Exec) -> % an exe - {ok, couch_os_process:start_link(Exec, [], [stream, exit_status, hide])}; + couch_os_process:start_link(Exec, [], [stream, exit_status, hide]); init(Else) -> {ok, Else}. |