Skip to content

Commit

Permalink
Missed a configuration option earlier.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@690531 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
janl committed Aug 30, 2008
1 parent 3751c13 commit 74fb305
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/couchdb/couch_db_update_notifier_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit 74fb305

Please sign in to comment.