You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/06/28 16:49:20 UTC

[Couchdb Wiki] Update of "Replication" by RobertNewson

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "Replication" page has been changed by RobertNewson.
http://wiki.apache.org/couchdb/Replication?action=diff&rev1=18&rev2=19

--------------------------------------------------

  
  At this time, CouchDB doesn’t remember continuous replications over a server restart. For more info visit http://books.couchdb.org/relax/reference/replication - CouchDB: The Definitive Guide, chapter Replication.
  
+ === Cancelling a continuous replication task ===
+ 
+ To cancel a continuous replication task, add "cancel":true parameter to JSON, for example:
+ 
+ {{{
+ POST /_replicate HTTP/1.1
+ 
+ {"source":"http://example.org/example-database","target":"http://admin:password@127.0.0.1:5984/example-database", "continuous":true, "cancel":true}
+ }}}
+ 
  
  See also: 
   * [[Replication_and_conflicts|Replication and conflicts]]