This is an automated email from the ASF dual-hosted git repository. wohali pushed a commit to branch 2.1.x in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit ab174091ae7e0c4a91174af3eed26a23b47e07ca Author: Tony Sun <[email protected]> AuthorDate: Thu Oct 26 18:13:23 2017 -0700 use string for w value --- src/mango/test/mango.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mango/test/mango.py b/src/mango/test/mango.py index 27949c4..1ed2a2c 100644 --- a/src/mango/test/mango.py +++ b/src/mango/test/mango.py @@ -166,7 +166,7 @@ class Database(object): def delete_index(self, ddocid, name, idx_type="json"): path = ["_index", ddocid, idx_type, name] - r = self.sess.delete(self.path(path), params={"w": 1}) + r = self.sess.delete(self.path(path), params={"w": "1"}) r.raise_for_status() def bulk_delete(self, docs): -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
