basic transactional scheduler working now

This commit is contained in:
Ken Stevens 2023-02-08 20:54:34 -05:00
parent 148cbf119b
commit bd76066911
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ public abstract class BaseHapiScheduler implements IHapiScheduler {
}
@Nonnull
private String getThreadPrefix() {
protected String getThreadPrefix() {
return myThreadNamePrefix + "-" + myInstanceName;
}

View File

@ -171,7 +171,7 @@ public abstract class BaseSchedulerServiceImpl implements ISchedulerService {
@EventListener(ContextClosedEvent.class)
public void stop() {
ourLog.info("Shutting down task scheduler...");
ourLog.info("Shutting down {} task scheduler...", myDefaultGroup);
myStopping.set(true);
myLocalScheduler.shutdown();