I\'m currently running Spring Boot Admin on my local machine for testing purposes and I\'m getting the following error nonstop. The application itself seems to be working f
I also had similar error. try this property in you application.yml
spring:
mvc:
async:
request-timeout: -1
Alternatively without spring boot, add
@Override
public void configureAsyncSupport(AsyncSupportConfigurer configurer) {
long timeout = 300000;// for example 5 minutes
WebMvcConfigurer.super.configureAsyncSupport(configurer);
configurer.setDefaultTimeout(timeout);
}
to the configuration class that implements WebMvcConfigurer