Browse Source

Merge branch '5.2.x'

pull/25075/head
Sam Brannen 6 years ago
parent
commit
273d952ddf
  1. 2
      spring-context/src/main/java/org/springframework/context/support/DefaultLifecycleProcessor.java

2
spring-context/src/main/java/org/springframework/context/support/DefaultLifecycleProcessor.java

@ -386,7 +386,7 @@ public class DefaultLifecycleProcessor implements LifecycleProcessor, BeanFactor @@ -386,7 +386,7 @@ public class DefaultLifecycleProcessor implements LifecycleProcessor, BeanFactor
if (latch.getCount() > 0 && !countDownBeanNames.isEmpty() && logger.isInfoEnabled()) {
logger.info("Failed to shut down " + countDownBeanNames.size() + " bean" +
(countDownBeanNames.size() > 1 ? "s" : "") + " with phase value " +
this.phase + " within timeout of " + this.timeout + ": " + countDownBeanNames);
this.phase + " within timeout of " + this.timeout + "ms: " + countDownBeanNames);
}
}
catch (InterruptedException ex) {

Loading…
Cancel
Save