How to use the patch file? On 20.03.2010, at 00:08, Filipe Manana (JIRA) wrote:
> > [ > https://issues.apache.org/jira/browse/COUCHDB-703?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel > ] > > Filipe Manana updated COUCHDB-703: > ---------------------------------- > > Attachment: couchdb-703-trunk.patch > > Fixes the issue. > >> 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. >