summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_stats_aggregator.erl
diff options
context:
space:
mode:
authorPaul Joseph Davis <davisp@apache.org>2009-11-24 20:21:16 +0000
committerPaul Joseph Davis <davisp@apache.org>2009-11-24 20:21:16 +0000
commit6f3bde270c686403d7b0434e84d37cb8fed405b2 (patch)
treee1fb54af2a3eb2ee2cffdb879d96a09bd867498b /src/couchdb/couch_stats_aggregator.erl
parenta1ab05beb99d05997fc2294aa5e3f713540e12ef (diff)
Fixes COUCHDB-578
Must've had a regex error when reformatting to a consult format. Also removed the config listener for the stats_descriptions section which is no longer used. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@883850 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_stats_aggregator.erl')
-rw-r--r--src/couchdb/couch_stats_aggregator.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/couchdb/couch_stats_aggregator.erl b/src/couchdb/couch_stats_aggregator.erl
index 76620093..6090355d 100644
--- a/src/couchdb/couch_stats_aggregator.erl
+++ b/src/couchdb/couch_stats_aggregator.erl
@@ -109,9 +109,6 @@ init(StatDescsFileName) ->
ok = couch_config:register(
fun("stats", _) -> exit(Self, config_change) end
),
- ok = couch_config:register(
- fun("stats_descriptions", _) -> exit(Self, config_change) end
- ),
Rate = list_to_integer(couch_config:get("stats", "rate", "1000")),
% TODO: Add timer_start to kernel start options.