commit | fa557b72835f35f34d6417b590727013647286b3 | [log] [tgz] |
---|---|---|
author | Tony Sun <tony.sun@cloudant.com> | Sat Apr 18 12:48:20 2015 -0700 |
committer | Tony Sun <tony.sun@cloudant.com> | Sat Apr 18 12:48:20 2015 -0700 |
tree | dca559d9b778fe82cb2108fb5e07ea19e5050417 | |
parent | 6490184bf36c6eb04587d5fb3bd86923e62ec2b5 [diff] |
Remove write quorum The write quorum is saved in the index. We cosmetically remove it. Fixes:COUCHDB-2663
diff --git a/src/mango_idx.erl b/src/mango_idx.erl index bf81679..c886ab0 100644 --- a/src/mango_idx.erl +++ b/src/mango_idx.erl
@@ -316,6 +316,8 @@ filter_opts(Rest); filter_opts([{type, _} | Rest]) -> filter_opts(Rest); +filter_opts([{w, _} | Rest]) -> + filter_opts(Rest); filter_opts([Opt | Rest]) -> [Opt | filter_opts(Rest)].