mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
21 lines
505 B
Python
21 lines
505 B
Python
import logging
|
|
from apscheduler.schedulers.background import BackgroundScheduler
|
|
|
|
from .appconfig import settings
|
|
|
|
instance: BackgroundScheduler = None
|
|
|
|
|
|
def initialize_scheduler():
|
|
global instance
|
|
logger = logging.getLogger('scheduler')
|
|
executors = {
|
|
'default': {
|
|
'type': 'threadpool',
|
|
'max_workers': settings.getint('global', 'SchedulerConcurrency')
|
|
}
|
|
}
|
|
|
|
instance = BackgroundScheduler(logger=logger, executors=executors)
|
|
instance.start()
|