Browse Source

Merge branch '2.1.x'

pull/18632/head
Brian Clozel 6 years ago
parent
commit
7104b8385f
  1. 2
      spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/embedded/JettyWebServerFactoryCustomizerTests.java

2
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/embedded/JettyWebServerFactoryCustomizerTests.java

@ -187,7 +187,7 @@ class JettyWebServerFactoryCustomizerTests { @@ -187,7 +187,7 @@ class JettyWebServerFactoryCustomizerTests {
@Test
void customIdleTimeout() {
bind("server.jetty.idle-timeout=60s");
bind("server.jetty.connection-idle-timeout=60s");
JettyWebServer server = customizeAndGetServer();
List<Long> timeouts = connectorsIdleTimeouts(server);
assertThat(timeouts).containsOnly(60000L);

Loading…
Cancel
Save