summaryrefslogtreecommitdiff
path: root/src/chttpd_db.erl
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-06-11 14:39:53 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-08-12 11:18:45 -0400
commit37431f6686b263b467aa2ad8c0e391e6cb74ce07 (patch)
tree0160708d13404158a3f9db0c47e0b7bddea8ed38 /src/chttpd_db.erl
parent7b0cef7802587e13df8c67f77fa591d869c14fc5 (diff)
temporarily disable metrics
Diffstat (limited to 'src/chttpd_db.erl')
-rw-r--r--src/chttpd_db.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chttpd_db.erl b/src/chttpd_db.erl
index 9e04ffa1..3b35220a 100644
--- a/src/chttpd_db.erl
+++ b/src/chttpd_db.erl
@@ -143,7 +143,7 @@ create_db_req(#httpd{user_ctx=UserCtx}=Req, DbName) ->
delete_db_req(#httpd{user_ctx=UserCtx}=Req, DbName) ->
case fabric:delete_db(DbName, [{user_ctx, UserCtx}]) of
ok ->
- couch_metrics_disk:notify({db_delete, {UserCtx#user_ctx.name, DbName}}),
+ % couch_metrics_disk:notify({db_delete, {UserCtx#user_ctx.name, DbName}}),
send_json(Req, 200, {[{ok, true}]});
Error ->
throw(Error)