summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_db_update_notifier.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/couchdb/couch_db_update_notifier.erl')
-rw-r--r--src/couchdb/couch_db_update_notifier.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_db_update_notifier.erl b/src/couchdb/couch_db_update_notifier.erl
index a1019556..f21ce057 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
- couch_os_process:start_link(Exec, [], [stream, exit_status, hide]);
+ couch_os_process:start_link(Exec, []);
init(Else) ->
{ok, Else}.
@@ -55,7 +55,7 @@ handle_event(Event, {Fun, FunAcc}) ->
{ok, {Fun, FunAcc2}};
handle_event({EventAtom, DbName}, Pid) ->
Obj = {[{type, list_to_binary(atom_to_list(EventAtom))}, {db, DbName}]},
- true = couch_os_process:write(Pid, Obj),
+ ok = couch_os_process:send(Pid, Obj),
{ok, Pid}.
handle_call(_Request, State) ->