This is an automated email from the ASF dual-hosted git repository.
tonysun83 pushed a commit to branch mango-test-failures
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/mango-test-failures by this
push:
new f019e8b use string for w value
f019e8b is described below
commit f019e8ba4b992d0d5ba0b6b8c98091e97c1df61f
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]>'].