Skip to content

Commit c53cd89

Browse files
replace asciidocalypse elasticsearch-ruby links
1 parent 5c5cb4b commit c53cd89

File tree

2 files changed

+8
-8
lines changed
  • solutions/search/site-or-app
  • troubleshoot/elasticsearch/elasticsearch-client-ruby-api

2 files changed

+8
-8
lines changed

solutions/search/site-or-app/clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ applies_to:
2020
- [PHP](elasticsearch-php://reference/index.md)
2121
- [Python](elasticsearch-py://reference/index.md)
2222
- [Eland](eland://reference/index.md) (Python client and toolkit for DataFrames and machine learning)
23-
- [Ruby](asciidocalypse://docs/elasticsearch-ruby/docs/reference/index.md)
23+
- [Ruby](elasticsearch-ruby://reference/index.md)
2424
- [Rust](elasticsearch-rs://reference/index.md)
2525

2626
## Community-contributed client libraries

troubleshoot/elasticsearch/elasticsearch-client-ruby-api/ruby.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ mapped_pages:
99
Use the information in this section to troubleshoot common problems and find answers for frequently asked questions.
1010

1111

12-
## Logging [ruby-ts-logging]
12+
## Logging [ruby-ts-logging]
1313

14-
The client provides several options for logging that can help when things go wrong. Check out the extensive documentation on [Logging](asciidocalypse://docs/elasticsearch-ruby/docs/reference/advanced-config.md#logging).
14+
The client provides several options for logging that can help when things go wrong. Check out the extensive documentation on [Logging](elasticsearch-ruby://reference/advanced-config.md#logging).
1515

1616
If you are having trouble sending a request to {{es}} with the client, we suggest enabling `tracing` on the client and testing the cURL command that appears in your terminal:
1717

@@ -25,14 +25,14 @@ ransport-ruby/8.2.1 (RUBY_VERSION: 3.2.2; linux x86_64; Faraday v2.7.4), Content
2525
Testing the cURL command can help find out if there’s a connection issue or if the issue is in the client code.
2626

2727

28-
## Troubleshooting connection issues [ruby-ts-connection]
28+
## Troubleshooting connection issues [ruby-ts-connection]
2929

30-
When working with multiple hosts, you might want to enable the `retry_on_failure` or `retry_on_status` options to perform a failed request on another node (refer to [Retrying on Failures](asciidocalypse://docs/elasticsearch-ruby/docs/reference/advanced-config.md#retry-failures)).
30+
When working with multiple hosts, you might want to enable the `retry_on_failure` or `retry_on_status` options to perform a failed request on another node (refer to [Retrying on Failures](elasticsearch-ruby://reference/advanced-config.md#retry-failures)).
3131

3232
For optimal performance, use a HTTP library which supports persistent ("keep-alive") connections, such as [patron](https://github.com/toland/patron) or [Typhoeus](https://github.com/typhoeus/typhoeus). Require the library (`require 'patron'`) in your code for Faraday 1.x or the adapter (`require 'faraday/patron'`) for Faraday 2.x, and it will be automatically used.
3333

3434

35-
## Adapter is not registered on Faraday [ruby-ts-adapter]
35+
## Adapter is not registered on Faraday [ruby-ts-adapter]
3636

3737
If you see a message like:
3838

@@ -60,13 +60,13 @@ gem 'faraday-typhoeus'
6060

6161
Migrating to Faraday 2 solves the issue as long as the adapter is included (unless you’re using the default one `net-http`). Alternatively, you can lock the version of Faraday in your project to 1.x: `gem 'faraday', '~> 1'`
6262

63-
::::{important}
63+
::::{important}
6464
Migrating to Faraday v2 requires at least Ruby `2.6`. Faraday v1 requires `2.4`.
6565
::::
6666

6767

6868

69-
## More Help [_more_help]
69+
## More Help [_more_help]
7070

7171
If you need more help, visit the [Elastic community forums](https://discuss.elastic.co/) and get answers from the experts in the community, including people from Elastic.
7272

0 commit comments

Comments
 (0)