One of the common causes of that error on a _changes feed, is passing the 
"limit" property as a string:

e.g.

curl -X POST http://127.0.0.1/mydb/_changes -H "Content-Type: 
application/json" -d '{"since":"1","limit":"20"}'


Will throw that error


curl -X POST http://127.0.0.1/mydb/_changes -H "Content-Type: 
application/json" -d '{"since":"1","limit":20}'


Will behave as expected.


If you are using one of the Couchbase Lite client SDK's? to create the 
replicator, can you paste the code you use to create the replicator, this 
might be a bug.


Andy

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/0f4518a2-7134-44bb-8ea0-d9c463bf7de4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to