Sigrid Andersson

Results 3 comments of Sigrid Andersson

Spring Boot workaround: https://github.com/spring-projects/spring-boot/issues/32629

This is still an issue. Implemented a workaround as suggested in https://github.com/spring-projects/spring-boot/issues/31714, which does work for us

``` @Configuration @ConditionalOnProperty(name = Array("server.shutdown"), havingValue = "graceful") class PreStopShutdownLifecycle() extends SmartLifecycle { private var running: Boolean = false override def start(): Unit = { running = true } override...