From c5ec169c83bd5235d255477562ba3a70c87be42c Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Tue, 7 Oct 2025 15:30:38 +0200 Subject: [PATCH] Update JdkClientHttpRequest javadoc This commit updates `JdkClientHttpRequest.TimeoutHandler` javadoc to reference up-to-date JDK issue that tracks improvements to HTTP client's request timeout handling. Closes gh-35581 Signed-off-by: Vedran Pavic --- .../org/springframework/http/client/JdkClientHttpRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/http/client/JdkClientHttpRequest.java b/spring-web/src/main/java/org/springframework/http/client/JdkClientHttpRequest.java index 2bb7f195420..0052e4a62b9 100644 --- a/spring-web/src/main/java/org/springframework/http/client/JdkClientHttpRequest.java +++ b/spring-web/src/main/java/org/springframework/http/client/JdkClientHttpRequest.java @@ -267,7 +267,7 @@ class JdkClientHttpRequest extends AbstractStreamingClientHttpRequest { /** * Temporary workaround to use instead of {@link HttpRequest.Builder#timeout(Duration)} - * until JDK-8258397 + * until JDK-8208693 * is fixed. Essentially, create a future with a timeout handler, and use it * to close the response. * @see OpenJDK discussion thread