summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/couchdb/couch_db_update_notifier_sup.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_db_update_notifier_sup.erl b/src/couchdb/couch_db_update_notifier_sup.erl
index 8902498d..010533da 100644
--- a/src/couchdb/couch_db_update_notifier_sup.erl
+++ b/src/couchdb/couch_db_update_notifier_sup.erl
@@ -31,12 +31,12 @@ start_link() ->
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},