Couchbase 6.6 with Sync-gateway 2.8
My Pouchdb app can save a doc and it will replicate bidirectional with my Couchbase. The existing docs in Couchbase are not syncing to PouchDB nor can I use alldocs function to receive existing docs from Couchbase.
sync-gateway-config has this
"databases": {
"testing": {
"import_docs": true,
"enable_shared_bucket_access": true,
"bucket": "testing",
"server": "http://xxxxxx:8091",
"username": "sync_gateway",
"password": "password",
"num_index_replicas": 0,
"users":{
"GUEST":{
"disabled":false,
"admin_channels":["*"]
}
},
"revs_limit": 20
},
I have no console error as if pouchDB thinks it is working fine.
Any help is appreciated, thanks