From c6709899db7965ee75b0e242a5217ed9ae921a46 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 23 Nov 2017 13:52:58 +0100 Subject: [PATCH] Polish --- .../src/main/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 95876a5fd5d..e93c801b194 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -226,11 +226,11 @@ Endpoints can be customized by using Spring properties. You can change whether a endpoint is `enabled` and the amount of time it will cache responses. For example, the following `application.properties` changes the time-to-live of the -`beans` endpoint and also enables `shutdown`: +`beans` endpoint to 10 seconds and also enables `shutdown`: [source,properties,indent=0] ---- - management.endpoint.beans.cache.time-to-live=10 + management.endpoint.beans.cache.time-to-live=10s management.endpoint.shutdown.enabled=true ----