From e94887b97b320e1f53260ac75218e148c578dd85 Mon Sep 17 00:00:00 2001 From: spencergibb Date: Thu, 19 Jan 2023 13:43:46 -0500 Subject: [PATCH] Update default connectTimeout to 30s according to reactor netty Fixes gh-2793 --- .../cloud/gateway/config/HttpClientProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/config/HttpClientProperties.java b/spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/config/HttpClientProperties.java index bdce83ea..776e53c9 100644 --- a/spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/config/HttpClientProperties.java +++ b/spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/config/HttpClientProperties.java @@ -51,7 +51,7 @@ import org.springframework.validation.annotation.Validated; @Validated public class HttpClientProperties { - /** The connect timeout in millis, the default is 45s. */ + /** The connect timeout in millis, the default is 30s. */ private Integer connectTimeout; /** The response timeout. */