Skip to content

[DOCS] Fixes broken links to new anchors #849

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 11, 2019
Merged
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
12 changes: 8 additions & 4 deletions docs/configuration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ scheme is `http`.

=== Authorization and Encryption

For details about HTTP Authorization and SSL encryption, please see link:_security.html[Authorization and SSL].
For details about HTTP Authorization and SSL encryption, see
<<security,Authorization and SSL>>.

=== Set retries

Expand Down Expand Up @@ -242,7 +243,8 @@ $client = ClientBuilder::create()
->build();
----

For more details, please see the dedicated page on link:_connection_pool.html[configuring connection pools].
For more details, please see the dedicated page on
<<connection_pool,configuring connection pools>>.

=== Setting the Connection Selector

Expand All @@ -258,7 +260,8 @@ $client = ClientBuilder::create()
->build();
----

For more details, please see the dedicated page on link:_selectors.html[configuring selectors].
For more details, please see the dedicated page on
<<selectors,configuring selectors>>.


=== Setting the Serializer
Expand All @@ -278,7 +281,8 @@ $client = ClientBuilder::create()
->build();
----

For more details, please see the dedicated page on link:_serializers.html[configuring serializers].
For more details, please see the dedicated page on
<<serializers,configuring serializers>>.


=== Setting a custom ConnectionFactory
Expand Down
5 changes: 3 additions & 2 deletions docs/per-request-configuration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,12 @@ $results = $future->wait(); // resolve the future
----

Future mode supports two options: `true` or `'lazy'`. For more details about how asynchronous execution functions, and
how to work with the results, see the dedicated page on <<_future_mode>>.
how to work with the results, see the dedicated page on <<future_mode>>.

=== SSL Encryption

Normally, you will specify SSL configurations when you create the client (see <<_security>> for more details), since encryption typically
Normally, you will specify SSL configurations when you create the client (see
<<security>> for more details), since encryption typically
applies to all requests. However, it is possible to configure on a per-request basis too if you need that functionality.
For example, if you need to use a self-signed cert on a specific request, you can specify it via the `verify` parameter
in the client options:
Expand Down
2 changes: 1 addition & 1 deletion docs/selectors.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ better to "stick" to a single connection for the duration of the script.
By default, this selector will randomize the hosts upon initialization, which will still guarantee an even distribution
of load across the cluster. It changes the round-robin dynamics from per-request to per-script.

If you are using <<_future_mode>>, the "sticky" behavior of this selector will be non-ideal, since all parallel requests
If you are using <<future_mode>>, the "sticky" behavior of this selector will be non-ideal, since all parallel requests
will go to the same node instead of multiple nodes in your cluster. When using future mode, the default `RoundRobinSelector`
should be preferred.

Expand Down