startup thread marked as daemon now (SPR-6382)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2449 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller
2009-11-19 13:01:20 +00:00
parent a15c8635a9
commit d8a4ba240d
@@ -673,6 +673,7 @@ public class SchedulerFactoryBean extends SchedulerAccessor implements FactoryBe
}
};
schedulerThread.setName("Quartz Scheduler [" + scheduler.getSchedulerName() + "]");
schedulerThread.setDaemon(true);
schedulerThread.start();
}
}