You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by jc...@apache.org on 2009/01/02 22:46:04 UTC

svn commit: r730846 - /couchdb/trunk/src/couchdb/couch_db_update_notifier.erl

Author: jchris
Date: Fri Jan  2 13:46:03 2009
New Revision: 730846

URL: http://svn.apache.org/viewvc?rev=730846&view=rev
Log:
fix for update notifier with couch os process. thanks davisp

Modified:
    couchdb/trunk/src/couchdb/couch_db_update_notifier.erl

Modified: couchdb/trunk/src/couchdb/couch_db_update_notifier.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_db_update_notifier.erl?rev=730846&r1=730845&r2=730846&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_db_update_notifier.erl (original)
+++ couchdb/trunk/src/couchdb/couch_db_update_notifier.erl Fri Jan  2 13:46:03 2009
@@ -37,7 +37,7 @@
     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}.