Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/rest-api/pages/rest-xdcr-adv-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Commands for establishing or retrieving either global settings or the settings f

Failure to authenticate returns `401 Unauthorized`.
A URI featuring an incorrect hostname or port returns a `failure to connect` message.
An incorrect `settings_URI` returns `400 Bad Request`, and an object such as `{"errors":{"_":"requested resource not found"}}`.
An incorrect `settings_URI` returns `404 Object Not Found`, and an object such as `{"_":"requested resource not found"}`.

An attempt to set a global-only setting for a specific replication returns `400 Bad Request`, and an object indicating which submitted parameters were incorrect.
For example, the attempted use of `POST /settings/replications/<settings_URI>` to establish values for `goGC` and `goMaxProcs` returns the following:
Expand Down Expand Up @@ -792,4 +792,4 @@ This setting can be established and retrieved either for an individual replicati

The REST call for creating a replication and specifying parameters is described in xref:rest-api:rest-xdcr-create-replication.adoc[Creating a Replication].
An overview of XDCR is provided in xref:learn:clusters-and-availability/xdcr-overview.adoc[Cross Data Center Replication (XDCR)].
The subset of advanced settings that can be configured by means of Couchbase Web Console is provided at xref:xdcr-reference:xdcr-advanced-settings.adoc[XDCR Advanced Settings].
The subset of advanced settings that can be configured by means of Couchbase Web Console is provided at xref:xdcr-reference:xdcr-advanced-settings.adoc[XDCR Advanced Settings].
1 change: 1 addition & 0 deletions modules/rest-api/pages/rest-xdcr-delete-ref.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ An attempt to delete a reference that supports a current, ongoing replication re

An improperly specified URI returns `405 Method Not Allowed`.
Failure to authenticate returns `401 Unauthorized`.
Attempt to delete a reference to a cluster name that doesn't exist returns `404 Object Not Found`.


== Example
Expand Down
2 changes: 1 addition & 1 deletion modules/rest-api/pages/rest-xdcr-delete-replication.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ curl -v -X DELETE -u <username>:<password>

== Responses

Failure to specify the `replication_id` correctly returns `400 Bad Request` and the following error message: `{"errors":{"_":"requested resource not found"}}`.
Failure to specify the `replication_id` correctly returns `404 Object Not Found` and the following error message: `{"_":"requested resource not found"}`.
Failure to authenticate returns `401 Unauthorized`.

== Example
Expand Down