From c154a014a1d7149aaf3b6902cccc146895eb51dc Mon Sep 17 00:00:00 2001 From: Adam Michalik Date: Tue, 19 Nov 2019 19:33:00 +0100 Subject: [PATCH] Remove invalid example of spring.mvc.async.request-timout property See gh-19057 --- .../boot/autoconfigure/web/servlet/WebMvcProperties.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java index b0f665f156b1..d81b67c31d4b 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java @@ -207,8 +207,7 @@ public static class Async { /** * Amount of time before asynchronous request handling times out. If this value is - * not set, the default timeout of the underlying implementation is used, e.g. 10 - * seconds on Tomcat with Servlet 3. + * not set, the default timeout of the underlying implementation is used. */ private Duration requestTimeout;