diff options
-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}. |