diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-06-15 20:59:56 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-08-12 11:18:46 -0400 |
commit | 50d87f96770fb54f2b2ea1728742b443c66134a3 (patch) | |
tree | 418c3e9596904ff77b0220c757c7f77b9d8b9eaf /src/chttpd_db.erl | |
parent | 49e2051daeb274d7c919e64946d2e6c50e083a93 (diff) |
refactored couch metrics interface
Diffstat (limited to 'src/chttpd_db.erl')
-rw-r--r-- | src/chttpd_db.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/chttpd_db.erl b/src/chttpd_db.erl index 277a33bc..9aae4c6e 100644 --- a/src/chttpd_db.erl +++ b/src/chttpd_db.erl @@ -158,7 +158,6 @@ 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}}), send_json(Req, 200, {[{ok, true}]}); Error -> throw(Error) |