AWS InterruptedException: sleep interrupted com.amazonaws.http.IdleConnectionReaper
问题 we have a web application use AWS (Amazone api), in the coreConfiguration class we create a awsApi bean with predestroy method, the code for coreConfiguration is: @Bean(destroyMethod = "destroy") public IGridStorageManager awsApi() { ..... } in awsApi class we have detroy methode, the code is: @Override @PreDestroy public void destroy() { if (clientS3 != null) { clientS3.shutdown(); } } My problem is sometime in PROD when i use the API i see thos logs: 2020-08-03 11:27:00.090 DEBUG 25172 ---