From 008eee42a13fbd7576c3aec1f63625e19ae24bb0 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 31 Aug 2020 09:38:21 +0200 Subject: [PATCH] Add a note about using graceful shutdown from an IDE Closes gh-22959 --- .../src/docs/asciidoc/spring-boot-features.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc index 1d24e09cd0..dfdbd0f173 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc @@ -3196,6 +3196,9 @@ To configure the timeout period, configure the configprop:spring.lifecycle.timeo spring.lifecycle.timeout-per-shutdown-phase=20s ---- +IMPORTANT: Using graceful shutdown with your IDE may not work properly if it does not send a proper `SIGTERM` signal. +Refer to the documentation of your IDE for more details. + [[boot-features-rsocket]]