From 2b1c319867ff841394f0cc07168173c56ba38668 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 26 Jan 2016 10:08:02 +0100 Subject: [PATCH] Fix broken build `server.session-timeout` was deprecated in 1.3 but still used in a sample that broke once the support for it was removed. This commit fix the build by using the expected property. --- .../src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-samples/spring-boot-sample-session-redis/src/main/resources/application.properties b/spring-boot-samples/spring-boot-sample-session-redis/src/main/resources/application.properties index 3ccb651442..b67b2f6507 100644 --- a/spring-boot-samples/spring-boot-sample-session-redis/src/main/resources/application.properties +++ b/spring-boot-samples/spring-boot-sample-session-redis/src/main/resources/application.properties @@ -1 +1 @@ -server.session-timeout: 5 \ No newline at end of file +server.session.timeout=5 \ No newline at end of file