Please include the exact versions of both Sync Gateway and Couchbase Lite (including platform). From the logs it looks like you've got SG beta 3, but if you're on iOS you've still got CBL beta 2.
Actually, please update to SG beta 3.1 -- it fixed some really critical bugs with the change-cache, and your log includes a suspicious warning from that cache. (Is that warning repeatable?) After that, if the bug persists, please file an issue on Github and we can dive in. :) Actually one thing I noticed: I'm not too familiar with the JS APIs, but it looks like you're deleting a document by adding a "_deleted":true property to it. This is valid, but it will preserve all the other properties of the document too, which may not be what you want. The easiest way to delete is to use the DELETE method. Or you can do a PUT as you're doing, but with a JSON body containing only the _deleted and _rev properties. --Jens -- 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/8EFF1375-5907-4616-B6B0-95D6271B86AC%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
