[
https://issues.apache.org/jira/browse/COUCHDB-703?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12847656#action_12847656
]
Filipe Manana commented on COUCHDB-703:
---------------------------------------
$ cd your_couch_db_checkout_dir
$ git apply --reject couchdb-703-trunk.patch
or
$ patch -p1 < couchdb-703-trunk.patch
then build as usual
> doc_ids replicate always the same document list
> -------------------------------------------------
>
> Key: COUCHDB-703
> URL: https://issues.apache.org/jira/browse/COUCHDB-703
> Project: CouchDB
> Issue Type: Bug
> Components: Replication
> Affects Versions: 0.11
> Environment: windows xp and mac osx
> Reporter: Nikolai Teofilov
> Fix For: 0.11
>
> Attachments: couchdb-703-trunk.patch
>
>
> curl -X PUT http://192.168.10.239:5984/test
> curl -X PUT http://192.168.10.239/test/doc1 -d '{}'
> curl -X PUT http://192.168.10.239/test/doc2 -d '{}'
> curl -X PUT http://192.168.10.239/test/doc3 -d '{}'
> curl -X PUT http://192.168.10.239/test-replica
> curl -X POST http://127.0.0.1:5984/_replicate -d
> '{"source":"test","target":"test-replica", "doc_ids": ["doc1", "doc2",
> "doc3"]}'
> replicate all documents. three documents.
> curl -X DELETE http://127.0.0.1:5984/test-replica
> create again the database:
> curl -X PUT http://127.0.0.1:5984/test-replica
> replicate just two of the documents:
> curl -X POST http://127.0.0.1:5984/_replicate -d
> '{"source":"test","target":"test-replica", "doc_ids": ["doc1", "doc2"]}'
> will still replicate the all three documents.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.