Throw ({ forbidden: doc }); purges existing document if updated document has incorrect values

Hi

if a document was created with a valid content per business logic and some time later it is updated with incorrect content, then the SG fn runs:

throw ({
                forbidden: doc
            });

This in turn purges the document. It can no longer be found on Couchbase Server. It also deletes the document on all connected mobile devices. Only the original device (Couchbase lite client) which wanted to upload the edited document with invalid contents keeps the document.

This was unexpected behaviour to me. I assumed that:

  • The original device keeps the document with the wrong data
  • All connected devices will never be notified about the updated document. They keep the original document
  • The changes will not be persisted on Couchbase Server
  • The document will not be purged on Couchbase Server

I run SG 2.1, Couchbase lite 1.4.4 on Android and Couchbase Server 6 CE

// Example document with valid contents
{ "age" : 20 }
// Updated document with invalid contents
{ "age": "hello world"}

Thanks!

That should not be happening, and we can’t reproduce it in a quick test. Can you give us steps to reproduce this?

Hi Jens,

I was able to reproduce it today again. I’m still unsure what exactly happens. I’ll write up a detailed report of my findings.

Thanks!

Prerequesites:

  • two Android devices running the same Android app and are signed in to the same account (optionally?) and use continuous push and pull sync. Omitted is account creation, creating sessions, initializing push and pull sync, etc.
  • following SG fn is used
function sync_gateway_fn(doc, oldDoc) {

    function printDoc(doc) {
        for (var key in doc) {
            if (doc.hasOwnProperty(key)) {
                console.log(new Date() + ": printDoc = " + key + " -> " + doc[key]);
            }
        }
    }
    console.log(new Date() + ": start of SG fn");
    if (doc) {
        console.log(new Date() + ": print doc");
        printDoc(doc);
    }
    if (oldDoc) {
        console.log(new Date() + ": print old doc");
        printDoc(oldDoc);
    }
    if (doc.type === 'test-type') {
        console.log(new Date() + ": in if-clause");
        if (oldDoc && !oldDoc._deleted) {
            if (doc.age == null) {
                console.log(new Date() + ": wrong value clause 1 and an exception is thrown");
                throw ({
                    forbidden: doc
                });
            }
            requireAccess(oldDoc.channels);
            channel(doc.channels);
        } else if (oldDoc && oldDoc._deleted) {
            if (doc.age == null) {
                console.log(new Date() + ": wrong value clause 2 and an exception is thrown");
                throw ({
                    forbidden: doc
                });
            }
            channel(doc.channels);
        } else if (!oldDoc) {
            if (doc.age == null) {
                console.log(new Date() + ": wrong value clause 3 and an exception is thrown");
                throw ({
                    forbidden: doc
                });
            }
            channel(doc.channels);
        }
    } else {
        console.log(new Date() + ": in else-clause");
        if (oldDoc) {
            console.log(new Date() + ": in else-clause ... if (oldDoc)");
            requireAccess(oldDoc.channels);
        }
        channel(doc.channels)
    }
}

Activity

public class ActTestType extends AppCompatActivity {

    private final String MY_DOCUMENT_NAME = "my_doc_test_type_2";
    private final String DEBUG = "DEBUG";

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.act_test_type);
        ((TextView) findViewById(R.id.act_test_type_tv_1)).setText("Document name is " + MY_DOCUMENT_NAME);
        findViewById(R.id.act_test_type_btn_create).setOnClickListener(view -> createTestTypeDocumentIfNotExists());
        findViewById(R.id.act_test_type_btn_delete).setOnClickListener(view -> {
            try {
                boolean isDeleted = CouchbaseUtil.getInstance(ActTestType.this).getDatabase().getDocument(MY_DOCUMENT_NAME).delete();
                Log.d(DEBUG, "Document is deleted = " + isDeleted);
            } catch (CouchbaseLiteException e) {
                e.printStackTrace();
            }
        });
        findViewById(R.id.act_test_type_btn_1).setOnClickListener(view -> {
            Document document = CouchbaseUtil.getInstance(ActTestType.this).getDatabase().getDocument(MY_DOCUMENT_NAME);
            try {
                document.update(newRevision -> {
                    Map<String, Object> properties = newRevision.getUserProperties();
                    properties.put("age", "twenty");
                    properties.put("type", "test-type");
                    properties.put("channels", SingletonApp.getInstance().getUuid());
                    newRevision.setUserProperties(properties);
                    return true;
                });
            } catch (CouchbaseLiteException e) {
                e.printStackTrace();
            }
        });
        findViewById(R.id.act_test_type_btn_2).setOnClickListener(view -> {
            Document document = CouchbaseUtil.getInstance(ActTestType.this).getDatabase().getDocument(MY_DOCUMENT_NAME);
            try {
                document.update(newRevision -> {
                    Map<String, Object> properties = newRevision.getUserProperties();
                    properties.put("age", "thirty");
                    properties.put("type", "test-type");
                    properties.put("channels", SingletonApp.getInstance().getUuid());
                    newRevision.setUserProperties(properties);
                    return true;
                });
            } catch (CouchbaseLiteException e) {
                e.printStackTrace();
            }
        });
        findViewById(R.id.act_test_type_btn_3).setOnClickListener(view -> {
            Document document = CouchbaseUtil.getInstance(ActTestType.this).getDatabase().getDocument(MY_DOCUMENT_NAME);
            try {
                document.update(newRevision -> {
                    Map<String, Object> properties = newRevision.getUserProperties();
                    properties.put("age", null);
                    properties.put("type", "test-type");
                    properties.put("channels", SingletonApp.getInstance().getUuid());
                    newRevision.setUserProperties(properties);
                    return true;
                });
            } catch (CouchbaseLiteException e) {
                e.printStackTrace();
            }
        });
        listenForChanges();
    }

    private void createTestTypeDocumentIfNotExists() {
        Document document = CouchbaseUtil.getInstance(this).getDatabase().getExistingDocument(MY_DOCUMENT_NAME);
        if (document == null) {
            document = CouchbaseUtil.getInstance(this).getDatabase().getDocument(MY_DOCUMENT_NAME);
            try {
                document.update(newRevision -> {
                    Map<String, Object> properties = newRevision.getUserProperties();
                    properties.put("age", 0);
                    properties.put("type", "test-type");
                    properties.put("channels", SingletonApp.getInstance().getUuid());
                    newRevision.setUserProperties(properties);
                    return true;
                });
            } catch (CouchbaseLiteException e) {
                e.printStackTrace();
            }
        }
    }

    private void listenForChanges() {
        Document document = CouchbaseUtil.getInstance(this).getDatabase().getExistingDocument(MY_DOCUMENT_NAME);
        if (document != null) {
            document.addChangeListener(event -> {
                updateUiText();
            });
        }
    }

    private void updateUiText() {
        PojoTestType pojoTestType = UtilObjectMapper.getMapper()
                .convertValue(CouchbaseUtil.getInstance(this).getDatabase().getExistingDocument(MY_DOCUMENT_NAME).getProperties(), PojoTestType.class);
        Log.d(DEBUG, "pojo = " + pojoTestType.toString());
        runOnUiThread(() -> ((TextView) findViewById(R.id.act_test_type_tv_2)).setText("Saved age = " + pojoTestType.age));
    }
}

POJO

public class PojoTestType {

    String age;

    public PojoTestType() {
    }

    @Override
    public String toString() {
        return "PojoTestType{" + "age=" + age + '}';
    }
}

Layout

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                   xmlns:app="http://schemas.android.com/apk/res-auto"
                                                   android:layout_width="match_parent"
                                                   android:layout_height="match_parent"
                                                   android:background="@android:color/white"
                                                   android:orientation="vertical">

    <TextView
        android:id="@+id/act_test_type_tv_1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

    <TextView
        android:id="@+id/act_test_type_tv_2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Saved age = "
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_tv_1"/>

    <Button
        android:id="@+id/act_test_type_btn_create"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Create document"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_tv_2"/>

    <Button
        android:id="@+id/act_test_type_btn_1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Set age to twenty"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_btn_create"/>

    <Button
        android:id="@+id/act_test_type_btn_2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Set age to thirty"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_btn_1"/>

    <Button
        android:id="@+id/act_test_type_btn_3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Set age to null"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_btn_2"/>

    <Button
        android:id="@+id/act_test_type_btn_delete"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="Delete document"
        android:textColor="@android:color/black"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/act_test_type_btn_3"/>
</androidx.constraintlayout.widget.ConstraintLayout>

Steps to reproduce and SG fn logs. Scroll horizontally to see steps if necessary

Thu, 08 Aug 2019 09:25:45 CEST: start of SG fn                                              <-- Create doc on device A, age is set to 0.
Thu, 08 Aug 2019 09:25:45 CEST: print doc
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = age -> 0
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = _rev -> 1-3fe9c953404a8d0e7177b81f327ac52f
Thu, 08 Aug 2019 09:25:45 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:25:45 CEST: in if-clause
Thu, 08 Aug 2019 09:26:09 CEST: start of SG fn                                              <-- Update doc on device A, age is set twenty.
Thu, 08 Aug 2019 09:26:09 CEST: print doc
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = _rev -> 2-f51836ef232d27a2a99b2f815562981b
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = age -> twenty
Thu, 08 Aug 2019 09:26:09 CEST: print old doc
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = age -> 0
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:09 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:09 CEST: in if-clause
Thu, 08 Aug 2019 09:26:20 CEST: start of SG fn                                              <-- Update doc on device A, age is set thirty.
Thu, 08 Aug 2019 09:26:20 CEST: print doc
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = age -> thirty
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = _rev -> 3-9f57d24e52c63880118e78cc1755b6c5
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:20 CEST: print old doc
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = age -> twenty
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:20 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:20 CEST: in if-clause
Thu, 08 Aug 2019 09:26:28 CEST: start of SG fn                                              <-- Update doc on device B, age is set to null.
Thu, 08 Aug 2019 09:26:28 CEST: print doc
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = _rev -> 4-925f4c03c89adb3c6fe07c0a1fd3873c
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = age -> undefined
Thu, 08 Aug 2019 09:26:28 CEST: print old doc
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = age -> thirty
Thu, 08 Aug 2019 09:26:28 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:28 CEST: in if-clause
Thu, 08 Aug 2019 09:26:28 CEST: wrong value clause 1 and an exception is thrown             <-- This is expected. Reject invalid values at the SG fn layer.
Thu, 08 Aug 2019 09:26:37 CEST: start of SG fn                                              <-- Update doc on device A, age is set to twenty.
Thu, 08 Aug 2019 09:26:37 CEST: print doc
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = _rev -> 4-42384f8927dd7f363e228979e422ca31
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = age -> twenty
Thu, 08 Aug 2019 09:26:37 CEST: print old doc
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = age -> thirty
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:37 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:37 CEST: in if-clause
Thu, 08 Aug 2019 09:26:38 CEST: start of SG fn                                              <-- Unsure what starts this. Afterwards the document is not found on the server anymore, i.e. in the documents view in the Couchbase server web console.
Thu, 08 Aug 2019 09:26:38 CEST: print doc
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _rev -> 5-4459d6b8f7882cd66443049e03ac41f6
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _deleted -> true
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:38 CEST: print old doc
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = age -> twenty
Thu, 08 Aug 2019 09:26:38 CEST: in else-clause                                              <-- First time in else-clause.
Thu, 08 Aug 2019 09:26:38 CEST: in else-clause ... if (oldDoc)
Thu, 08 Aug 2019 09:26:38 CEST: start of SG fn                                              <-- Unsure who starts this.
Thu, 08 Aug 2019 09:26:38 CEST: print doc
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _revisions -> [object Object]
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = age -> undefined
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _rev -> 5-05278c8e912a58d2a121b6db51a06d31
Thu, 08 Aug 2019 09:26:38 CEST: print old doc
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = age -> thirty
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = channels -> AOGsnkwf8BR8AwKb0BH9r4JXi5P2
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = type -> test-type
Thu, 08 Aug 2019 09:26:38 CEST: printDoc = _id -> my_doc_test_type_2
Thu, 08 Aug 2019 09:26:38 CEST: in if-clause
Thu, 08 Aug 2019 09:26:38 CEST: wrong value clause 1 and an exception is thrown

The document is deleted on Couchbase Server and on device A. Device B still has the document.

There shouldn’t be any way an update that’s rejected by the Sync Function ends up modifying the document in the bucket. A few questions for clarification:

  • Is your Sync Gateway running with shared bucket access enabled?
  • How are you verifying that the document no longer exists in Couchbase Server?
  • Can you share the SG logs from the test in a gist?

Thanks!

  • yes: "enable_shared_bucket_access": true
  • Entering the document name in Couchbase Server Dashboard > Documents. An error dialog with " Object Not Found" appears
  • It’s on my list. I’ll get to it next week (or earlier) and will update here

Ok - I’ll watch for that. In the meantime, it would also be useful to get the results of a call to SG’s raw endpoint (:4985/[dbname]/_raw/[docid]) for the document in question. If the document has been tombstoned for whatever reason on the server side, that will provide additional insight on the state of the doc.

The initial report was run with SG 2.1. In the meantime I updated to SG 2.6. I was unable to reproduce it although I ran the same code. Here are the outputs of REST GET. Output is as expected, no issue. Sorry used the wrong command:

Doc created on device A
{
    "_id": "my_doc_test_type_3",
    "_rev": "1-3fe9c953404a8d0e7177b81f327ac52f",
    "age": 0,
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}

Set to twenty on device A

{
    "_id": "my_doc_test_type_3",
    "_rev": "2-f51836ef232d27a2a99b2f815562981b",
    "age": "twenty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}

Set to thirty on device A


{
    "_id": "my_doc_test_type_3",
    "_rev": "3-9f57d24e52c63880118e78cc1755b6c5",
    "age": "thirty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}


Set to null on device B

{
    "_id": "my_doc_test_type_3",
    "_rev": "3-9f57d24e52c63880118e78cc1755b6c5",
    "age": "thirty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}

Set to twenty on device A

{
    "_id": "my_doc_test_type_3",
    "_rev": "4-42384f8927dd7f363e228979e422ca31",
    "age": "twenty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}

Did the same procedure with doc id my_doc_test_type_4 and raw command. Again no issue.

Doc created on device A

{
    "_sync": {
        "cas": "0x000046cac1cabf15",
        "channels": {
            "AOGsnkwf8BR8AwKb0BH9r4JXi5P2": null
        },
        "history": {
            "channels": [
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ]
            ],
            "parents": [
                -1
            ],
            "revs": [
                "1-3fe9c953404a8d0e7177b81f327ac52f"
            ]
        },
        "recent_sequences": [
            133072988
        ],
        "rev": "1-3fe9c953404a8d0e7177b81f327ac52f",
        "sequence": 133072988,
        "time_saved": "2019-08-30T21:42:09.067518034+02:00",
        "value_crc32c": "0x12dc73f9"
    },
    "age": 0,
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}


Set to twenty on device A

{
    "_sync": {
        "cas": "0x0000995cd0cabf15",
        "channels": {
            "AOGsnkwf8BR8AwKb0BH9r4JXi5P2": null
        },
        "history": {
            "channels": [
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ]
            ],
            "parents": [
                -1,
                0
            ],
            "revs": [
                "1-3fe9c953404a8d0e7177b81f327ac52f",
                "2-f51836ef232d27a2a99b2f815562981b"
            ]
        },
        "recent_sequences": [
            133072988,
            133072989
        ],
        "rev": "2-f51836ef232d27a2a99b2f815562981b",
        "sequence": 133072989,
        "time_saved": "2019-08-30T21:43:11.65279301+02:00",
        "value_crc32c": "0x486cc498"
    },
    "age": "twenty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}


Set to thirty on device A


{
    "_sync": {
        "cas": "0x00001b6cd4cabf15",
        "channels": {
            "AOGsnkwf8BR8AwKb0BH9r4JXi5P2": null
        },
        "history": {
            "channels": [
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ]
            ],
            "parents": [
                -1,
                0,
                1
            ],
            "revs": [
                "1-3fe9c953404a8d0e7177b81f327ac52f",
                "2-f51836ef232d27a2a99b2f815562981b",
                "3-9f57d24e52c63880118e78cc1755b6c5"
            ]
        },
        "recent_sequences": [
            133072988,
            133072989,
            133072990
        ],
        "rev": "3-9f57d24e52c63880118e78cc1755b6c5",
        "sequence": 133072990,
        "time_saved": "2019-08-30T21:43:29.092961862+02:00",
        "value_crc32c": "0x1c27dde5"
    },
    "age": "thirty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}



Set to null on device B

{
    "_sync": {
        "cas": "0x00001b6cd4cabf15",
        "channels": {
            "AOGsnkwf8BR8AwKb0BH9r4JXi5P2": null
        },
        "history": {
            "channels": [
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ]
            ],
            "parents": [
                -1,
                0,
                1
            ],
            "revs": [
                "1-3fe9c953404a8d0e7177b81f327ac52f",
                "2-f51836ef232d27a2a99b2f815562981b",
                "3-9f57d24e52c63880118e78cc1755b6c5"
            ]
        },
        "recent_sequences": [
            133072988,
            133072989,
            133072990
        ],
        "rev": "3-9f57d24e52c63880118e78cc1755b6c5",
        "sequence": 133072990,
        "time_saved": "2019-08-30T21:43:29.092961862+02:00",
        "value_crc32c": "0x1c27dde5"
    },
    "age": "thirty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}


Set to twenty on device A

{
    "_sync": {
        "cas": "0x000072bfdfcabf15",
        "channels": {
            "AOGsnkwf8BR8AwKb0BH9r4JXi5P2": null
        },
        "history": {
            "channels": [
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ],
                [
                    "AOGsnkwf8BR8AwKb0BH9r4JXi5P2"
                ]
            ],
            "parents": [
                3,
                0,
                1,
                -1
            ],
            "revs": [
                "2-f51836ef232d27a2a99b2f815562981b",
                "3-9f57d24e52c63880118e78cc1755b6c5",
                "4-42384f8927dd7f363e228979e422ca31",
                "1-3fe9c953404a8d0e7177b81f327ac52f"
            ]
        },
        "recent_sequences": [
            133072988,
            133072989,
            133072990,
            133072991
        ],
        "rev": "4-42384f8927dd7f363e228979e422ca31",
        "sequence": 133072991,
        "time_saved": "2019-08-30T21:44:17.736369445+02:00",
        "value_crc32c": "0x486cc498"
    },
    "age": "twenty",
    "channels": "AOGsnkwf8BR8AwKb0BH9r4JXi5P2",
    "type": "test-type"
}

Closing this post as there is no issue.