You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2008/08/19 02:31:53 UTC

svn commit: r686907 - in /incubator/couchdb/branches/runtimeconfig/src/couchdb: Makefile.am couch.app.tpl.in couch_file.erl

Author: damien
Date: Mon Aug 18 17:31:53 2008
New Revision: 686907

URL: http://svn.apache.org/viewvc?rev=686907&view=rev
Log:
Added new file couch_db_update_notifier_sup.erl to makefile and .app file

Modified:
    incubator/couchdb/branches/runtimeconfig/src/couchdb/Makefile.am
    incubator/couchdb/branches/runtimeconfig/src/couchdb/couch.app.tpl.in
    incubator/couchdb/branches/runtimeconfig/src/couchdb/couch_file.erl

Modified: incubator/couchdb/branches/runtimeconfig/src/couchdb/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/src/couchdb/Makefile.am?rev=686907&r1=686906&r2=686907&view=diff
==============================================================================
--- incubator/couchdb/branches/runtimeconfig/src/couchdb/Makefile.am (original)
+++ incubator/couchdb/branches/runtimeconfig/src/couchdb/Makefile.am Mon Aug 18 17:31:53 2008
@@ -43,6 +43,7 @@
     couch_config_writer.erl \
     couch_db.erl \
     couch_db_update_notifier.erl \
+    couch_db_update_notifier_sup.erl \
     couch_doc.erl \
     couch_event_sup.erl \
     couch_file.erl \
@@ -67,6 +68,7 @@
     couch_config_writer.beam \
     couch_db.beam \
     couch_db_update_notifier.beam \
+    couch_db_update_notifier_sup.beam \
     couch_doc.beam \
     couch_event_sup.beam \
     couch_file.beam \
@@ -98,6 +100,7 @@
     couch_config_writer.html \
     couch_db.html \
     couch_db_update_notifier.html \
+    couch_db_update_notifier_sup.html \
     couch_doc.html \
     couch_event_sup.html \
     couch_file.html \

Modified: incubator/couchdb/branches/runtimeconfig/src/couchdb/couch.app.tpl.in
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/src/couchdb/couch.app.tpl.in?rev=686907&r1=686906&r2=686907&view=diff
==============================================================================
--- incubator/couchdb/branches/runtimeconfig/src/couchdb/couch.app.tpl.in (original)
+++ incubator/couchdb/branches/runtimeconfig/src/couchdb/couch.app.tpl.in Mon Aug 18 17:31:53 2008
@@ -17,6 +17,7 @@
                         couch_httpd,
                         couch_event_sup,
                         couch_db_update_notifier,
+                        couch_db_update_notifier_sup,
                         couch_ft_query,
                         couch_log,
                         couch_rep]},
@@ -24,5 +25,6 @@
                            couch_server_sup,
                            couch_view,
                            couch_query_servers,
-                           couch_ft_query]},
+                           couch_ft_query,
+                           couch_db_update_notifier_sup]},
               {applications,[kernel,stdlib,crypto,inets,mochiweb]}]}.

Modified: incubator/couchdb/branches/runtimeconfig/src/couchdb/couch_file.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/runtimeconfig/src/couchdb/couch_file.erl?rev=686907&r1=686906&r2=686907&view=diff
==============================================================================
--- incubator/couchdb/branches/runtimeconfig/src/couchdb/couch_file.erl (original)
+++ incubator/couchdb/branches/runtimeconfig/src/couchdb/couch_file.erl Mon Aug 18 17:31:53 2008
@@ -394,7 +394,7 @@
 
 
 
-should_close(Fd) ->
+should_close(_Fd) ->
     case process_info(self(), links) of
     {links, [_]} ->
         % no linkers left (except our fd port). What about monitors?