Skip to content

Commit e91a436

Browse files
lcawlpolyfractal
authored andcommitted
[DOCS] Fixes broken links to new anchors (#849)
* [DOCS] Fixes links to anchors * [DOCS] Fixes more internal links
1 parent 2662749 commit e91a436

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

docs/configuration.asciidoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ scheme is `http`.
8989

9090
=== Authorization and Encryption
9191

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

9495
=== Set retries
9596

@@ -242,7 +243,8 @@ $client = ClientBuilder::create()
242243
->build();
243244
----
244245

245-
For more details, please see the dedicated page on link:_connection_pool.html[configuring connection pools].
246+
For more details, please see the dedicated page on
247+
<<connection_pool,configuring connection pools>>.
246248

247249
=== Setting the Connection Selector
248250

@@ -258,7 +260,8 @@ $client = ClientBuilder::create()
258260
->build();
259261
----
260262

261-
For more details, please see the dedicated page on link:_selectors.html[configuring selectors].
263+
For more details, please see the dedicated page on
264+
<<selectors,configuring selectors>>.
262265

263266

264267
=== Setting the Serializer
@@ -278,7 +281,8 @@ $client = ClientBuilder::create()
278281
->build();
279282
----
280283

281-
For more details, please see the dedicated page on link:_serializers.html[configuring serializers].
284+
For more details, please see the dedicated page on
285+
<<serializers,configuring serializers>>.
282286

283287

284288
=== Setting a custom ConnectionFactory

docs/per-request-configuration.asciidoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,12 @@ $results = $future->wait(); // resolve the future
269269
----
270270

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

274274
=== SSL Encryption
275275

276-
Normally, you will specify SSL configurations when you create the client (see <<_security>> for more details), since encryption typically
276+
Normally, you will specify SSL configurations when you create the client (see
277+
<<security>> for more details), since encryption typically
277278
applies to all requests. However, it is possible to configure on a per-request basis too if you need that functionality.
278279
For example, if you need to use a self-signed cert on a specific request, you can specify it via the `verify` parameter
279280
in the client options:

docs/selectors.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ better to "stick" to a single connection for the duration of the script.
3737
By default, this selector will randomize the hosts upon initialization, which will still guarantee an even distribution
3838
of load across the cluster. It changes the round-robin dynamics from per-request to per-script.
3939

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

0 commit comments

Comments
 (0)