diff options
author | Jan Lehnardt <jan@apache.org> | 2008-08-30 16:32:51 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2008-08-30 16:32:51 +0000 |
commit | 74fb305a94dc9cda7e6c55748eea76e47160de21 (patch) | |
tree | ae3a4a009a4e1d2d2312bda61f61cd676c743d55 /src/couchdb | |
parent | 3751c13253370c72735fb070588fa8d99db5e81a (diff) |
Missed a configuration option earlier.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@690531 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r-- | src/couchdb/couch_db_update_notifier_sup.erl | 4 |
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}, |