Hi there,
Version 3.6.5
I’ve run into an odd issue where when developing locally my UpsertAsync is no longer publishing the content that we’re pushing. This is working in our test and production environment, but I am reluctant to push any code changes from local in case this stops working.
Return status is success and I can see the record in Couchbase, but no content. How can I debug further?
In couchbase (its empty)
The fact that the document does have empty curly braces seems to indicate it’s writing successfully, but that the problem is related to JSON serialization. What serialization configuration do you have configured on the ClusterOptions
? Also, what does your document class look like?
Thanks for the reply. I checked the class and it was missing the [DataMember] attributes. Upon adding these the Upsert is now acting as expected. Thank you.
1 Like