Consistent handling of InterruptedException

Issue: SPR-16479
This commit is contained in:
Juergen Hoeller
2018-02-10 13:03:33 +01:00
parent 6ea0af3540
commit 39201adca4
6 changed files with 13 additions and 9 deletions

View File

@@ -700,6 +700,7 @@ public class SchedulerFactoryBean extends SchedulerAccessor implements FactoryBe
Thread.sleep(startupDelay * 1000);
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
// simply proceed
}
if (logger.isInfoEnabled()) {