summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2020-03-25 14:52:26 -0500
committerPaul J. Davis <paul.joseph.davis@gmail.com>2020-04-10 11:19:46 -0500
commit364b639b3d47b307538567fe78605d558c9e6995 (patch)
tree3f0fa232ac16745b40f9f7b1a5d562285b583184
parentec06dd547ccda1c3652e933713da8b066e62ab00 (diff)
downloadcouchdb-364b639b3d47b307538567fe78605d558c9e6995.tar.gz
Implement _view_cleanup for FoundationDB
-rw-r--r--src/chttpd/src/chttpd_db.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chttpd/src/chttpd_db.erl b/src/chttpd/src/chttpd_db.erl
index 730cf3ef5..8dd0c931b 100644
--- a/src/chttpd/src/chttpd_db.erl
+++ b/src/chttpd/src/chttpd_db.erl
@@ -265,7 +265,7 @@ handle_compact_req(Req, _Db) ->
send_method_not_allowed(Req, "POST").
handle_view_cleanup_req(Req, Db) ->
- ok = fabric:cleanup_index_files_all_nodes(Db),
+ ok = fabric2_index:cleanup(Db),
send_json(Req, 202, {[{ok, true}]}).