Author: jan
Date: Sat Aug 30 09:32:51 2008
New Revision: 690531
URL: http://svn.apache.org/viewvc?rev=690531&view=rev
Log:
Missed a configuration option earlier.
Modified:
incubator/couchdb/trunk/src/couchdb/couch_db_update_notifier_sup.erl
Modified: incubator/couchdb/trunk/src/couchdb/couch_db_update_notifier_sup.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch_db_update_notifier_sup.erl?rev=690531&r1=690530&r2=690531&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/couch_db_update_notifier_sup.erl (original)
+++ incubator/couchdb/trunk/src/couchdb/couch_db_update_notifier_sup.erl Sat Aug 30 09:32:51
2008
@@ -31,12 +31,12 @@
init([]) ->
Self = self(),
ok = couch_config:register(
- fun({"Update Notification", _}) ->
+ fun({"update_notification", _}) ->
exit(Self, reload_config)
end),
UpdateNotifierExes = couch_config:lookup_match(
- {{"Update Notification", '$1'}, '$2'}, []),
+ {{"update_notification", '$1'}, '$2'}, []),
{ok,
{{one_for_one, 10, 3600},
|