From 7c4d79f520b0526113904ab4ed8e410a63526dad Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Wed, 3 Apr 2024 09:00:13 +0300 Subject: [PATCH] [doc] Fix links to `Connection Timeout` and `Timeout Configuration` (#3129) In both files, the documentation is related to HTTP client timeouts. --- docs/modules/ROOT/pages/faq.adoc | 4 ++-- docs/modules/ROOT/pages/http-client.adoc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/faq.adoc b/docs/modules/ROOT/pages/faq.adoc index 0fb886c29f..0748beaa7c 100644 --- a/docs/modules/ROOT/pages/faq.adoc +++ b/docs/modules/ROOT/pages/faq.adoc @@ -115,7 +115,7 @@ If, on the client side, you observe `Connection prematurely closed BEFORE respon * Check for any proxies and load balancers. ** Do they have some kind of idle timeout configuration (the connection is closed when there is no incoming data for a certain period of time)? ** Do they silently drop the idle connections without sending any signal? -In order to verify whether this might be the issue, you can enable the TCP keep-alive as described in the section xref:http-server.adoc#http-server-connection-timeout[Connection Timeout]. +In order to verify whether this might be the issue, you can enable the TCP keep-alive as described in the section xref:http-client.adoc#connection-timeout[Connection Timeout]. Issues related to TCP keep-alive configuration on various load balancers were reported in the past. *** https://github.com/reactor/reactor-netty/issues/764#issuecomment-1011373248 *** https://github.com/reactor/reactor-netty/issues/1510 @@ -130,5 +130,5 @@ Issues related to TCP keep-alive configuration on various load balancers were re *** rate limit configuration ** Is the target server in a shutting down state? -Consider checking xref:http-server.adoc#http-server-timeout-configuration[Timeout Configuration]. The section describes various timeout configuration options that are available for Reactor Netty clients. +Consider checking xref:http-client.adoc#timeout-configuration[Timeout Configuration]. The section describes various timeout configuration options that are available for Reactor Netty clients. Configuring a proper timeout may improve or solve issues in the communication process. diff --git a/docs/modules/ROOT/pages/http-client.adoc b/docs/modules/ROOT/pages/http-client.adoc index 47b07105b0..a66f46068f 100644 --- a/docs/modules/ROOT/pages/http-client.adoc +++ b/docs/modules/ROOT/pages/http-client.adoc @@ -594,7 +594,7 @@ The configuration options can be grouped as follows: * xref:http-client.adoc#connection-pool-timeout[Connection Pool Timeout] * xref:http-client.adoc#http-client-timeout[HttpClient Timeout] ** xref:http-client.adoc#response-timeout[Response Timeout] -** xref:http-server.adoc#http-server-connection-timeout[Connection Timeout] +** xref:http-client.adoc#connection-timeout[Connection Timeout] ** xref:http-client.adoc#ssl-tls-timeout[SSL/TLS Timeout] ** xref:http-client.adoc#proxy-timeout[Proxy Timeout] ** xref:http-client.adoc#dns-timeout[Host Name Resolution Timeout]